org.openid4java.association.Association.createMacKey()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(98)

本文整理了Java中org.openid4java.association.Association.createMacKey()方法的一些代码示例,展示了Association.createMacKey()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Association.createMacKey()方法的具体详情如下:
包路径:org.openid4java.association.Association
类名称:Association
方法名:createMacKey

Association.createMacKey介绍

暂无

代码示例

代码示例来源:origin: org.openid4java/openid4java-nodeps

public static Association createHmacSha1(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expDate);
}

代码示例来源:origin: org.openid4java/openid4java

public static Association createHmacSha256(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expDate);
}

代码示例来源:origin: org.openid4java/openid4java

public static Association createHmacSha1(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expDate);
}

代码示例来源:origin: org.openid4java/openid4java

public static Association createHmacSha256(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expiryIn);
}

代码示例来源:origin: com.cloudbees/openid4java-shaded

public static Association createHmacSha1(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源:origin: jbufu/openid4java

public static Association createHmacSha256(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expDate);
}

代码示例来源:origin: jbufu/openid4java

public static Association createHmacSha256(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expiryIn);
}

代码示例来源:origin: org.openid4java/openid4java

public static Association createHmacSha1(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源:origin: org.openid4java/openid4java-nodeps

public static Association createHmacSha1(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源:origin: org.openid4java/openid4java-nodeps

public static Association createHmacSha256(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expDate);
}

代码示例来源:origin: com.cloudbees/openid4java-shaded

public static Association createHmacSha1(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expDate);
}

代码示例来源:origin: com.cloudbees/openid4java-shaded

public static Association createHmacSha256(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expiryIn);
}

代码示例来源:origin: org.openid4java/openid4java-nodeps

public static Association createHmacSha256(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expiryIn);
}

代码示例来源:origin: com.cloudbees/openid4java-shaded

public static Association createHmacSha256(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expDate);
}

代码示例来源:origin: jbufu/openid4java

public static Association createHmacSha1(String handle, byte[] macKeyBytes, int expiryIn)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源:origin: jbufu/openid4java

public static Association createHmacSha1(String handle, byte[] macKeyBytes, Date expDate)
{
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expDate);
}

代码示例来源:origin: org.wso2.org.openid4java/openid4java-nodeps

public static Association createHmacSha1(String handle, byte[] macKeyBytes, Date expDate) {
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expDate);
}

代码示例来源:origin: org.wso2.org.openid4java/openid4java-nodeps

public static Association createHmacSha1(String handle, byte[] macKeyBytes, int expiryIn) {
  SecretKey macKey = createMacKey(HMAC_SHA1_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源:origin: org.wso2.org.openid4java/openid4java-nodeps

public static Association createHmacSha256(String handle, byte[] macKeyBytes, int expiryIn) {
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expiryIn);
}

代码示例来源:origin: org.wso2.org.openid4java/openid4java-nodeps

public static Association createHmacSha256(String handle, byte[] macKeyBytes, Date expDate) {
  SecretKey macKey = createMacKey(HMAC_SHA256_ALGORITHM, macKeyBytes);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expDate);
}

相关文章