src/crypto/key/dto/key-object.dto.ts
Represents a key entity with its unique identifier, public key, and certificate.
Properties |
crt |
Type : string
|
Defined in src/crypto/key/dto/key-object.dto.ts:19
|
Certificate in PEM format. |
id |
Type : string
|
Defined in src/crypto/key/dto/key-object.dto.ts:11
|
Unique identifier for the key. |
publicKey |
Type : EC_Public
|
Defined in src/crypto/key/dto/key-object.dto.ts:15
|
Public key in JWK format. |
import { EC_Public } from "../../../well-known/dto/jwks-response.dto";
/**
* Represents a key entity with its unique identifier, public key, and certificate.
*/
export class KeyObj {
/**
* Unique identifier for the key.
*/
id: string;
/**
* Public key in JWK format.
*/
publicKey: EC_Public;
/**
* Certificate in PEM format.
*/
crt: string;
}