Type Alias DecryptingKey

A decrypting key used to decrypt OIDC encrypted assertions

type DecryptingKey = {
    certificate?: string;
    createdAt?: string;
    createdBy?: string;
    jwks?: string;
    keyId?: string;
    keySize: number;
    keyType: string;
    publicKey?: string;
}
Index

Properties

certificate?: string

The key's certificate in pem format

createdAt?: string
createdBy?: string
jwks?: string
keyId?: string
keySize: number
keyType: string
publicKey?: string