DefaultJwtProcessorRegistry
Default in-memory implementation of JwtProcessorRegistry.
Signing processors are keyed by (SigningAlgorithm, optional key ID) and encryption processors by (EncryptionAlgorithm, optional key ID). Look-up follows the order defined by JwtProcessorRegistry: exact match, algorithm-only fallback, then delegate.
See also
Functions
Link copied to clipboard
Sets other as the delegate registry for this registry.
Link copied to clipboard
open override fun findBestJweProcessor(algorithm: EncryptionAlgorithm, keyId: String?): BaseJweProcessor?
Link copied to clipboard
open override fun findBestJwsProcessor(algorithm: SigningAlgorithm, keyId: String?): BaseJwsProcessor?
Link copied to clipboard
Registers a BaseJweProcessor in this registry under its algorithm and optional keyId.
Link copied to clipboard
Registers a BaseJwsProcessor in this registry under its algorithm and optional keyId.