mitreid-connect
|
公開メンバ関数 | |
void | encryptJwt (JWEObject jwt) |
void | decryptJwt (JWEObject jwt) |
Map< String, JWK > | getAllPublicKeys () |
Collection< JWEAlgorithm > | getAllEncryptionAlgsSupported () |
Collection< EncryptionMethod > | getAllEncryptionEncsSupported () |
void org.mitre.jwt.encryption.service.JWTEncryptionAndDecryptionService.decryptJwt | ( | JWEObject | jwt | ) |
Decrypts the JWT in place with the default decrypter. If an arbitrary payload is used, then pass in a JWEObject. Otherwise, if JWT claims are the payload, then use the JWEObject subclass EncryptedJWT instead.
jwt |
org.mitre.jwt.encryption.service.impl.DefaultJWTEncryptionAndDecryptionServiceで実装されています。
void org.mitre.jwt.encryption.service.JWTEncryptionAndDecryptionService.encryptJwt | ( | JWEObject | jwt | ) |
Encrypts the JWT in place with the default encrypter. If an arbitrary payload is used, then pass in a JWEObject. Otherwise, if JWT claims are the payload, then use the JWEObject subclass EncryptedJWT instead.
jwt |
org.mitre.jwt.encryption.service.impl.DefaultJWTEncryptionAndDecryptionServiceで実装されています。
Collection<JWEAlgorithm> org.mitre.jwt.encryption.service.JWTEncryptionAndDecryptionService.getAllEncryptionAlgsSupported | ( | ) |
Get the list of all encryption algorithms supported by this service.
org.mitre.jwt.encryption.service.impl.DefaultJWTEncryptionAndDecryptionServiceで実装されています。
Collection<EncryptionMethod> org.mitre.jwt.encryption.service.JWTEncryptionAndDecryptionService.getAllEncryptionEncsSupported | ( | ) |
Get the list of all encryption methods supported by this service.
org.mitre.jwt.encryption.service.impl.DefaultJWTEncryptionAndDecryptionServiceで実装されています。
Map<String, JWK> org.mitre.jwt.encryption.service.JWTEncryptionAndDecryptionService.getAllPublicKeys | ( | ) |
Get all public keys for this service, mapped by their Key ID
org.mitre.jwt.encryption.service.impl.DefaultJWTEncryptionAndDecryptionServiceで実装されています。