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

The timestamp for when the decrypting key was created.

createdBy?: string

The user id of the user who created the decrypting key

jwks?: string

The public key in jwk format

keyId?: string

The id of the decrypting key

keySize: number

The algorithm size of the decrypting key

keyType: string

The algorithm type of the decrypting key

publicKey?: string

The public key in pem format