Searched refs:symmetricEncryptionKey (Results 1 - 1 of 1) sorted by relevance

/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sso/providers/stateless/
H A DJwtSessionMapperBuilder.java258 * @param symmetricEncryptionKey the symmetric key. Must be 128, 192 or 256 bits in size.
266 JwtSessionMapperBuilder encryptedUsingKeyWrap(@Nonnull final Key symmetricEncryptionKey) { argument
267 Reject.ifNull(symmetricEncryptionKey, "symmetricEncryptionKey must not be null.");
269 this.encryptionKey = symmetricEncryptionKey;
270 this.decryptionKey = symmetricEncryptionKey;
271 switch (symmetricEncryptionKey.getEncoded().length) {
294 * @param symmetricEncryptionKey the AES encryption key to use. Must be either 128, 192 or 256 bits.
300 JwtSessionMapperBuilder encryptedUsingDirectKey(@Nonnull final Key symmetricEncryptionKey) { argument
301 Reject.ifNull(symmetricEncryptionKey, "symmetricEncryptionKe
[all...]

Completed in 37 milliseconds