Searched defs:encryptionAlgorithm (Results 1 - 8 of 8) sorted by relevance

/forgerock/openam/openam-oauth2/src/test/java/org/forgerock/openidconnect/
H A DOpenIdConnectTokenTest.java72 JweAlgorithm encryptionAlgorithm, EncryptionMethod encryptionMethod) throws Exception {
76 Key encryptionKey = getEncryptionKey(encryptionAlgorithm, encryptionMethod);
77 Key decryptionKey = getDecryptionKey(encryptionAlgorithm, encryptionMethod);
82 signingAlgorithm.toString(), encryptionAlgorithm == null ? null : encryptionAlgorithm.toString(),
83 encryptionMethod == null ? null : encryptionMethod.toString(), encryptionAlgorithm != null, "issuer",
91 if (encryptionAlgorithm == null) {
98 .containsEntry("alg", encryptionAlgorithm.toString())
71 shouldSupportAllSigningAndEncryptionModes(JwsAlgorithm signingAlgorithm, JweAlgorithm encryptionAlgorithm, EncryptionMethod encryptionMethod) argument
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/security/
H A DDataEncryptor.java70 * @param encryptionAlgorithm the encryption algorithm to be used.
81 String encryptionAlgorithm,
85 KeyGenerator keygen = KeyGenerator.getInstance(encryptionAlgorithm);
90 Cipher cipher = Cipher.getInstance(encryptionAlgorithm);
80 encryptWithAsymmetricKey(String data, String encryptionAlgorithm, int encryptionStrength, Key encKey) argument
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/security/
H A DDataEncryptor.java70 * @param encryptionAlgorithm the encryption algorithm to be used.
81 String encryptionAlgorithm,
85 KeyGenerator keygen = KeyGenerator.getInstance(encryptionAlgorithm);
90 Cipher cipher = Cipher.getInstance(encryptionAlgorithm);
80 encryptWithAsymmetricKey(String data, String encryptionAlgorithm, int encryptionStrength, Key encKey) argument
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/sts/model/
H A DSTSInstanceModelBase.java322 private String getEncryptionStrengthFromEncryptionAlgorithm(String encryptionAlgorithm) { argument
323 if ("http://www.w3.org/2001/04/xmlenc#aes128-cbc".equals(encryptionAlgorithm)) {
325 } else if ("http://www.w3.org/2001/04/xmlenc#aes192-cbc".equals(encryptionAlgorithm)) {
327 } else if ("http://www.w3.org/2001/04/xmlenc#aes256-cbc".equals(encryptionAlgorithm)) {
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/sts/model/
H A DSTSInstanceModelBase.java322 private String getEncryptionStrengthFromEncryptionAlgorithm(String encryptionAlgorithm) { argument
323 if ("http://www.w3.org/2001/04/xmlenc#aes128-cbc".equals(encryptionAlgorithm)) {
325 } else if ("http://www.w3.org/2001/04/xmlenc#aes192-cbc".equals(encryptionAlgorithm)) {
327 } else if ("http://www.w3.org/2001/04/xmlenc#aes256-cbc".equals(encryptionAlgorithm)) {
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DOpenIdConnectToken.java67 private final String encryptionAlgorithm; field in class:OpenIdConnectToken
81 * @param encryptionAlgorithm The encryption algorithm.
101 Key encryptionKey, String signingAlgorithm, String encryptionAlgorithm, String encryptionMethod,
109 this.encryptionAlgorithm = encryptionAlgorithm;
139 this.encryptionAlgorithm = null;
382 if (isIDTokenEncryptionEnabled && (isEmpty(encryptionAlgorithm) || isEmpty(encryptionMethod)
384 logger.info("ID Token Encryption not set. algorithm: {}, method: {}", encryptionAlgorithm,
387 "ID Token Encryption not set. algorithm: " + encryptionAlgorithm + ", method: " + encryptionMethod);
393 logger.info("ID Token Encryption enabled. algorithm: {}, method: {}", encryptionAlgorithm,
100 OpenIdConnectToken(String signingKeyId, String encryptionKeyId, byte[] clientSecret, KeyPair signingKeyPair, Key encryptionKey, String signingAlgorithm, String encryptionAlgorithm, String encryptionMethod, boolean isIDTokenEncryptionEnabled, String iss, String sub, String aud, String azp, long exp, long iat, long authTime, String nonce, String ops, String atHash, String cHash, String acr, List<String> amr, String auditTrackingId, String realm) argument
[all...]
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DSAML2Config.java81 private String encryptionAlgorithm; field in class:SAML2Config.SAML2ConfigBuilder
215 public SAML2ConfigBuilder encryptionAlgorithm(String encryptionAlgorithm) { argument
216 this.encryptionAlgorithm = encryptionAlgorithm;
308 private final String encryptionAlgorithm; field in class:SAML2Config
336 this.encryptionAlgorithm = builder.encryptionAlgorithm;
351 if (encryptionAlgorithm == null) {
355 if (encryptionAlgorithmStrength == 0 && !XMLCipher.TRIPLEDES.equals(encryptionAlgorithm)) {
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/config/user/
H A DSAML2Config.java92 private String encryptionAlgorithm; field in class:SAML2Config.SAML2ConfigBuilder
349 * @param encryptionAlgorithm the encryption algorithm.
352 public SAML2ConfigBuilder encryptionAlgorithm(String encryptionAlgorithm) { argument
353 this.encryptionAlgorithm = encryptionAlgorithm;
468 private final String encryptionAlgorithm; field in class:SAML2Config
496 this.encryptionAlgorithm = builder.encryptionAlgorithm;
511 if (encryptionAlgorithm
[all...]

Completed in 53 milliseconds