cose-kit
Version:
**DEPRECATED:** Use [@auth0/cose](https://www.npmjs.com/package/@auth0/cose).
17 lines (16 loc) • 618 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JWKKeyType = exports.KeyType = void 0;
var KeyType;
(function (KeyType) {
KeyType[KeyType["OKP"] = 1] = "OKP";
KeyType[KeyType["EC"] = 2] = "EC";
KeyType[KeyType["OCT"] = 4] = "OCT";
KeyType[KeyType["Reserved"] = 0] = "Reserved";
})(KeyType || (exports.KeyType = KeyType = {}));
var JWKKeyType;
(function (JWKKeyType) {
JWKKeyType[JWKKeyType["OKP"] = 1] = "OKP";
JWKKeyType[JWKKeyType["EC"] = 2] = "EC";
JWKKeyType[JWKKeyType["oct"] = 4] = "oct";
})(JWKKeyType || (exports.JWKKeyType = JWKKeyType = {}));