com.auth0.jwt.algorithms.Algorithm.RSA384()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(12.8k)|赞(0)|评价(0)|浏览(166)

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

Algorithm.RSA384介绍

[英]Creates a new Algorithm instance using SHA384withRSA. Tokens specify this as "RS384".
[中]使用SHA384withRSA创建新的算法实例。令牌将其指定为“RS384”。

代码示例

代码示例来源:origin: auth0/java-jwt

/**
 * Creates a new Algorithm instance using SHA384withRSA. Tokens specify this as "RS384".
 *
 * @param publicKey  the key to use in the verify instance.
 * @param privateKey the key to use in the signing instance.
 * @return a valid RSA384 Algorithm.
 * @throws IllegalArgumentException if both provided Keys are null.
 */
public static Algorithm RSA384(RSAPublicKey publicKey, RSAPrivateKey privateKey) throws IllegalArgumentException {
  return RSA384(RSAAlgorithm.providerForKeys(publicKey, privateKey));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldCreateRSA384AlgorithmWithBothKeys() throws Exception {
  RSAPublicKey publicKey = mock(RSAPublicKey.class);
  RSAPrivateKey privateKey = mock(RSAPrivateKey.class);
  Algorithm algorithm = Algorithm.RSA384(publicKey, privateKey);
  assertThat(algorithm, is(notNullValue()));
  assertThat(algorithm, is(instanceOf(RSAAlgorithm.class)));
  assertThat(algorithm.getDescription(), is("SHA384withRSA"));
  assertThat(algorithm.getName(), is("RS384"));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldCreateRSA384AlgorithmWithProvider() throws Exception {
  RSAKeyProvider provider = mock(RSAKeyProvider.class);
  Algorithm algorithm = Algorithm.RSA384(provider);
  assertThat(algorithm, is(notNullValue()));
  assertThat(algorithm, is(instanceOf(RSAAlgorithm.class)));
  assertThat(algorithm.getDescription(), is("SHA384withRSA"));
  assertThat(algorithm.getName(), is("RS384"));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldCreateRSA384AlgorithmWithPublicKey() throws Exception {
  RSAKey key = mock(RSAKey.class, withSettings().extraInterfaces(RSAPublicKey.class));
  Algorithm algorithm = Algorithm.RSA384(key);
  assertThat(algorithm, is(notNullValue()));
  assertThat(algorithm, is(instanceOf(RSAAlgorithm.class)));
  assertThat(algorithm.getDescription(), is("SHA384withRSA"));
  assertThat(algorithm.getName(), is("RS384"));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldPassRSA384VerificationWithProvidedPublicKey() throws Exception {
  RSAKeyProvider provider = mock(RSAKeyProvider.class);
  PublicKey publicKey = readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA");
  when(provider.getPublicKeyById("my-key-id")).thenReturn((RSAPublicKey) publicKey);
  String jwt = "eyJhbGciOiJSUzM4NCIsImtpZCI6Im15LWtleS1pZCJ9.eyJpc3MiOiJhdXRoMCJ9.ITNTVCT7ercumZKHV4-BXGkJwwa7fyF3CnSfEvm09fDFSkaseDxNo_75WLDmK9WM8RMHTPvkpHcTKm4guYEbC_la7RzFIKpU72bppzQojggSmWWXt_6zq50QP2t5HFMebote1zxhp8ccEdSCX5pyY6J2sm9kJ__HKK32KxIVCTjVCz-bFBS60oG35aYEySdKsxuUdWbD5FQ9I16Ony2x0EPvmlL3GPiAPmgjSFp3LtcBIbCDaoonM7iuDRGIQiDN_n2FKKb1Bt4_38uWPtTkwRpNalt6l53Y3JDdzGI5fMrMo3RQnQlAJxUJKD0eL6dRAA645IVIIXucHwuhgGGIVw";
  Algorithm algorithm = Algorithm.RSA384(provider);
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldCreateRSA384AlgorithmWithPrivateKey() throws Exception {
  RSAKey key = mock(RSAKey.class, withSettings().extraInterfaces(RSAPrivateKey.class));
  Algorithm algorithm = Algorithm.RSA384(key);
  assertThat(algorithm, is(notNullValue()));
  assertThat(algorithm, is(instanceOf(RSAAlgorithm.class)));
  assertThat(algorithm.getDescription(), is("SHA384withRSA"));
  assertThat(algorithm.getName(), is("RS384"));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldThrowRSA384InstanceWithNullKeys() throws Exception {
  exception.expect(IllegalArgumentException.class);
  exception.expectMessage("Both provided Keys cannot be null.");
  Algorithm.RSA384(null, null);
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldThrowRSA384InstanceWithNullKey() throws Exception {
  exception.expect(IllegalArgumentException.class);
  exception.expectMessage("Both provided Keys cannot be null.");
  RSAKey key = null;
  Algorithm.RSA384(key);
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldThrowRSA384InstanceWithNullKeyProvider() throws Exception {
  exception.expect(IllegalArgumentException.class);
  exception.expectMessage("The Key Provider cannot be null.");
  RSAKeyProvider provider = null;
  Algorithm.RSA384(provider);
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldDoRSA384SigningWithProvidedPrivateKey() throws Exception {
  RSAKeyProvider provider = mock(RSAKeyProvider.class);
  PrivateKey privateKey = readPrivateKeyFromFile(PRIVATE_KEY_FILE, "RSA");
  PublicKey publicKey = readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA");
  when(provider.getPrivateKey()).thenReturn((RSAPrivateKey) privateKey);
  when(provider.getPublicKeyById(null)).thenReturn((RSAPublicKey) publicKey);
  Algorithm algorithm = Algorithm.RSA384(provider);
  
  String jwt = asJWT(algorithm, RS384Header, auth0IssPayload);
  assertSignaturePresent(jwt);
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldAcceptRSA384Algorithm() throws Exception {
  String token = "eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoMCJ9.TZlWjXObwGSQOiu2oMq8kiKz0_BR7bbBddNL6G8eZ_GoR82BXOZDqNrQr7lb_M-78XGBguWLWNIdYhzgxOUL9EoCJlrqVm9s9vo6G8T1sj1op-4TbjXZ61TwIvrJee9BvPLdKUJ9_fp1Js5kl6yXkst40Th8Auc5as4n49MLkipjpEhKDKaENKHpSubs1ripSz8SCQZSofeTM_EWVwSw7cpiM8Fy8jOPvWG8Xz4-e3ODFowvHVsDcONX_4FTMNbeRqDuHq2ZhCJnEfzcSJdrve_5VD5fM1LperBVslTrOxIgClOJ3RmM7-WnaizJrWP3D6Z9OLxPxLhM6-jx6tcxEw";
  RSAKey key = (RSAKey) PemUtils.readPublicKeyFromFile(PUBLIC_KEY_FILE_RSA, "RSA");
  DecodedJWT jwt = JWT.require(Algorithm.RSA384(key))
      .build()
      .verify(token);
  assertThat(jwt, is(notNullValue()));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldFailOnRSA384SigningWhenProvidedPrivateKeyIsNull() throws Exception {
  exception.expect(SignatureGenerationException.class);
  exception.expectMessage("The Token's Signature couldn't be generated when signing using the Algorithm: SHA384withRSA");
  exception.expectCause(isA(IllegalStateException.class));
  exception.expectCause(hasMessage(is("The given Private Key is null.")));
  RSAKeyProvider provider = mock(RSAKeyProvider.class);
  when(provider.getPrivateKey()).thenReturn(null);
  Algorithm algorithm = Algorithm.RSA384(provider);
  algorithm.sign(new byte[0], new byte[0]);
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldFailRSA384VerificationWhenProvidedPublicKeyIsNull() throws Exception {
  exception.expect(SignatureVerificationException.class);
  exception.expectMessage("The Token's Signature resulted invalid when verified using the Algorithm: SHA384withRSA");
  exception.expectCause(isA(IllegalStateException.class));
  exception.expectCause(hasMessage(is("The given Public Key is null.")));
  RSAKeyProvider provider = mock(RSAKeyProvider.class);
  when(provider.getPublicKeyById("my-key-id")).thenReturn(null);
  String jwt = "eyJhbGciOiJSUzM4NCIsImtpZCI6Im15LWtleS1pZCJ9.eyJpc3MiOiJhdXRoMCJ9.ITNTVCT7ercumZKHV4-BXGkJwwa7fyF3CnSfEvm09fDFSkaseDxNo_75WLDmK9WM8RMHTPvkpHcTKm4guYEbC_la7RzFIKpU72bppzQojggSmWWXt_6zq50QP2t5HFMebote1zxhp8ccEdSCX5pyY6J2sm9kJ__HKK32KxIVCTjVCz-bFBS60oG35aYEySdKsxuUdWbD5FQ9I16Ony2x0EPvmlL3GPiAPmgjSFp3LtcBIbCDaoonM7iuDRGIQiDN_n2FKKb1Bt4_38uWPtTkwRpNalt6l53Y3JDdzGI5fMrMo3RQnQlAJxUJKD0eL6dRAA645IVIIXucHwuhgGGIVw";
  Algorithm algorithm = Algorithm.RSA384(provider);
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldPassRSA384Verification() throws Exception {
  String jwt = "eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoMCJ9.TZlWjXObwGSQOiu2oMq8kiKz0_BR7bbBddNL6G8eZ_GoR82BXOZDqNrQr7lb_M-78XGBguWLWNIdYhzgxOUL9EoCJlrqVm9s9vo6G8T1sj1op-4TbjXZ61TwIvrJee9BvPLdKUJ9_fp1Js5kl6yXkst40Th8Auc5as4n49MLkipjpEhKDKaENKHpSubs1ripSz8SCQZSofeTM_EWVwSw7cpiM8Fy8jOPvWG8Xz4-e3ODFowvHVsDcONX_4FTMNbeRqDuHq2ZhCJnEfzcSJdrve_5VD5fM1LperBVslTrOxIgClOJ3RmM7-WnaizJrWP3D6Z9OLxPxLhM6-jx6tcxEw";
  Algorithm algorithm = Algorithm.RSA384((RSAKey) readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA"));
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldDoRSA384Signing() throws Exception {
  Algorithm algorithmSign = Algorithm.RSA384((RSAKey) readPrivateKeyFromFile(PRIVATE_KEY_FILE, "RSA"));
  Algorithm algorithmVerify = Algorithm.RSA384((RSAKey) readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA"));
  String jwt = asJWT(algorithmSign, RS384Header, auth0IssPayload);
  String expectedSignature = "Jx1PaTBnjd_U56MNjifFcY7w9ImDbseg0y8Ijr2pSiA1_wzQb_wy9undaWfzR5YqdIAXvjS8AGuZUAzIoTG4KMgOgdVyYDz3l2jzj6wI-lgqfR5hTy1w1ruMUQ4_wobpdxAiJ4fEbg8Mi_GljOiCO-P1HilxKnpiOJZidR8MQGwTInsf71tOUkK4x5UsdmUueuZbaU-CL5kPnRfXmJj9CcdxZbD9oMlbo23dwkP5BNMrS2LwGGzc9C_-ypxrBIOVilG3WZxcSmuG86LjcZbnL6LBEfph5NmKBgQav147uipb_7umBEr1m2dYiB_9u606n3bcoo3rnsYYK_Xfi1GAEQ";
  assertSignaturePresent(jwt);
  assertSignatureValue(jwt, expectedSignature);
  algorithmVerify.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldPassRSA384VerificationWithBothKeys() throws Exception {
  String jwt = "eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoMCJ9.TZlWjXObwGSQOiu2oMq8kiKz0_BR7bbBddNL6G8eZ_GoR82BXOZDqNrQr7lb_M-78XGBguWLWNIdYhzgxOUL9EoCJlrqVm9s9vo6G8T1sj1op-4TbjXZ61TwIvrJee9BvPLdKUJ9_fp1Js5kl6yXkst40Th8Auc5as4n49MLkipjpEhKDKaENKHpSubs1ripSz8SCQZSofeTM_EWVwSw7cpiM8Fy8jOPvWG8Xz4-e3ODFowvHVsDcONX_4FTMNbeRqDuHq2ZhCJnEfzcSJdrve_5VD5fM1LperBVslTrOxIgClOJ3RmM7-WnaizJrWP3D6Z9OLxPxLhM6-jx6tcxEw";
  Algorithm algorithm = Algorithm.RSA384((RSAPublicKey) readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA"), (RSAPrivateKey) readPrivateKeyFromFile(PRIVATE_KEY_FILE, "RSA"));
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldFailRSA384VerificationWithInvalidPublicKey() throws Exception {
  exception.expect(SignatureVerificationException.class);
  exception.expectMessage("The Token's Signature resulted invalid when verified using the Algorithm: SHA384withRSA");
  String jwt = "eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoMCJ9.TZlWjXObwGSQOiu2oMq8kiKz0_BR7bbBddNL6G8eZ_GoR82BXOZDqNrQr7lb_M-78XGBguWLWNIdYhzgxOUL9EoCJlrqVm9s9vo6G8T1sj1op-4TbjXZ61TwIvrJee9BvPLdKUJ9_fp1Js5kl6yXkst40Th8Auc5as4n49MLkipjpEhKDKaENKHpSubs1ripSz8SCQZSofeTM_EWVwSw7cpiM8Fy8jOPvWG8Xz4-e3ODFowvHVsDcONX_4FTMNbeRqDuHq2ZhCJnEfzcSJdrve_5VD5fM1LperBVslTrOxIgClOJ3RmM7-WnaizJrWP3D6Z9OLxPxLhM6-jx6tcxEw";
  Algorithm algorithm = Algorithm.RSA384((RSAKey) readPublicKeyFromFile(INVALID_PUBLIC_KEY_FILE, "RSA"));
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldPassRSA384Verification() throws Exception {
  String token = "eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoMCJ9.TZlWjXObwGSQOiu2oMq8kiKz0_BR7bbBddNL6G8eZ_GoR82BXOZDqNrQr7lb_M-78XGBguWLWNIdYhzgxOUL9EoCJlrqVm9s9vo6G8T1sj1op-4TbjXZ61TwIvrJee9BvPLdKUJ9_fp1Js5kl6yXkst40Th8Auc5as4n49MLkipjpEhKDKaENKHpSubs1ripSz8SCQZSofeTM_EWVwSw7cpiM8Fy8jOPvWG8Xz4-e3ODFowvHVsDcONX_4FTMNbeRqDuHq2ZhCJnEfzcSJdrve_5VD5fM1LperBVslTrOxIgClOJ3RmM7-WnaizJrWP3D6Z9OLxPxLhM6-jx6tcxEw";
  Algorithm algorithm = Algorithm.RSA384((RSAKey) readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA"));
  JWTVerifier verifier = JWTVerifier.init(algorithm).withIssuer("auth0").build();
  concurrentVerify(verifier, token);
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldFailRSA384VerificationWhenUsingPrivateKey() throws Exception {
  exception.expect(SignatureVerificationException.class);
  exception.expectMessage("The Token's Signature resulted invalid when verified using the Algorithm: SHA384withRSA");
  exception.expectCause(isA(IllegalStateException.class));
  exception.expectCause(hasMessage(is("The given Public Key is null.")));
  String jwt = "eyJhbGciOiJSUzM4NCIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJhdXRoMCJ9.TZlWjXObwGSQOiu2oMq8kiKz0_BR7bbBddNL6G8eZ_GoR82BXOZDqNrQr7lb_M-78XGBguWLWNIdYhzgxOUL9EoCJlrqVm9s9vo6G8T1sj1op-4TbjXZ61TwIvrJee9BvPLdKUJ9_fp1Js5kl6yXkst40Th8Auc5as4n49MLkipjpEhKDKaENKHpSubs1ripSz8SCQZSofeTM_EWVwSw7cpiM8Fy8jOPvWG8Xz4-e3ODFowvHVsDcONX_4FTMNbeRqDuHq2ZhCJnEfzcSJdrve_5VD5fM1LperBVslTrOxIgClOJ3RmM7-WnaizJrWP3D6Z9OLxPxLhM6-jx6tcxEw";
  Algorithm algorithm = Algorithm.RSA384((RSAKey) readPrivateKeyFromFile(PRIVATE_KEY_FILE, "RSA"));
  algorithm.verify(JWT.decode(jwt));
}

代码示例来源:origin: auth0/java-jwt

@Test
public void shouldDoRSA384SigningWithBothKeys() throws Exception {
  Algorithm algorithm = Algorithm.RSA384((RSAPublicKey) readPublicKeyFromFile(PUBLIC_KEY_FILE, "RSA"), (RSAPrivateKey) readPrivateKeyFromFile(PRIVATE_KEY_FILE, "RSA"));
  String jwt = asJWT(algorithm, RS384Header, auth0IssPayload);
  String expectedSignature = "Jx1PaTBnjd_U56MNjifFcY7w9ImDbseg0y8Ijr2pSiA1_wzQb_wy9undaWfzR5YqdIAXvjS8AGuZUAzIoTG4KMgOgdVyYDz3l2jzj6wI-lgqfR5hTy1w1ruMUQ4_wobpdxAiJ4fEbg8Mi_GljOiCO-P1HilxKnpiOJZidR8MQGwTInsf71tOUkK4x5UsdmUueuZbaU-CL5kPnRfXmJj9CcdxZbD9oMlbo23dwkP5BNMrS2LwGGzc9C_-ypxrBIOVilG3WZxcSmuG86LjcZbnL6LBEfph5NmKBgQav147uipb_7umBEr1m2dYiB_9u606n3bcoo3rnsYYK_Xfi1GAEQ";
  assertSignaturePresent(jwt);
  assertSignatureValue(jwt, expectedSignature);
  algorithm.verify(JWT.decode(jwt));
}

相关文章