@guarani/jose
Version:
Implementation of the RFCs of the JOSE Working Group.
12 lines (11 loc) • 424 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ELLIPTIC_CURVES_REGISTRY = void 0;
/**
* Elliptic Curves Registry.
*/
exports.ELLIPTIC_CURVES_REGISTRY = [
{ id: 'P-256', name: 'prime256v1', oid: '1.2.840.10045.3.1.7', length: 32 },
{ id: 'P-384', name: 'secp384r1', oid: '1.3.132.0.34', length: 48 },
{ id: 'P-521', name: 'secp521r1', oid: '1.3.132.0.35', length: 66 },
];