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

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

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

Association.<init>介绍

暂无

代码示例

代码示例来源: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: jbufu/openid4java

public static Association generateHmacSha1(String handle, int expiryIn)
{
  SecretKey macKey = generateMacSha1Key();
  if (DEBUG) _log.debug("Generated SHA1 MAC key: " + macKey);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源: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 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-nodeps

public static Association generateHmacSha256(String handle, int expiryIn)
{
  SecretKey macKey = generateMacSha256Key();
  if (DEBUG) _log.debug("Generated SHA256 MAC key: " + macKey);
  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: 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: 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: 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: org.wso2.org.openid4java/openid4java-nodeps

public static Association generateHmacSha1(String handle, int expiryIn) {
  SecretKey macKey = generateMacSha1Key();
  if (DEBUG) {
    _log.debug("Generated SHA1 MAC key: " + macKey);
  }
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

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

public static Association generateHmacSha1(String handle, int expiryIn)
{
  SecretKey macKey = generateMacSha1Key();
  if (DEBUG) _log.debug("Generated SHA1 MAC key: " + macKey);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

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

public static Association generateHmacSha256(String handle, int expiryIn)
{
  SecretKey macKey = generateMacSha256Key();
  if (DEBUG) _log.debug("Generated SHA256 MAC key: " + macKey);
  return new Association(TYPE_HMAC_SHA256, handle, macKey, expiryIn);
}

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

public static Association generateHmacSha1(String handle, int expiryIn)
{
  SecretKey macKey = generateMacSha1Key();
  if (DEBUG) _log.debug("Generated SHA1 MAC key: " + macKey);
  return new Association(TYPE_HMAC_SHA1, handle, macKey, expiryIn);
}

代码示例来源: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);
}

相关文章