Interface AttestationKeyResolver
- All Known Implementing Classes:
StaticAttestationKeyResolver,TrustedAttestationKeyResolver
public interface AttestationKeyResolver
Interface for resolving attestation public keys by kid for JWT attestation validation.
Implementations may use local registries, remote JWKS, or other trusted sources.
- Author:
- Rodrick Awambeng
-
Method Summary
Modifier and TypeMethodDescriptionResolves a JWK for the given kid, header, and payload context.Resolves and validates an attestation certificate chain.
-
Method Details
-
resolveKey
Resolves a JWK for the given kid, header, and payload context. Returns null if the key cannot be resolved or is not trusted. -
resolveX5c
Resolves and validates an attestation certificate chain. Returningnullmeans that none of the configured trust sources trusts the chain.
-