Skip to content

Commit

Permalink
Add support of signature algorithms (PS256, PS384, PS512) in quarkus-…
Browse files Browse the repository at this point in the history
…oidc
  • Loading branch information
Eng-Fouad authored May 18, 2023
1 parent 7d8bb5d commit 0f905d0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ public class OidcProvider implements Closeable {
SignatureAlgorithm.RS512.getAlgorithm(),
SignatureAlgorithm.ES256.getAlgorithm(),
SignatureAlgorithm.ES384.getAlgorithm(),
SignatureAlgorithm.ES512.getAlgorithm() };
SignatureAlgorithm.ES512.getAlgorithm(),
SignatureAlgorithm.PS256.getAlgorithm(),
SignatureAlgorithm.PS384.getAlgorithm(),
SignatureAlgorithm.PS512.getAlgorithm() };
private static final AlgorithmConstraints ASYMMETRIC_ALGORITHM_CONSTRAINTS = new AlgorithmConstraints(
AlgorithmConstraints.ConstraintType.PERMIT, ASYMMETRIC_SUPPORTED_ALGORITHMS);
private static final AlgorithmConstraints SYMMETRIC_ALGORITHM_CONSTRAINTS = new AlgorithmConstraints(
Expand Down

0 comments on commit 0f905d0

Please sign in to comment.