@am92/kms
Version:
Key Management Service
29 lines (28 loc) • 957 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.INVALID_MASTER_IV_HEX_ERROR = exports.INVALD_MASTER_KEY_HEX_ERROR = exports.INVALID_KEY_PAIR_SPEC_ERROR = exports.INVALID_KEY_SPEC_ERROR = exports.INVALID_CONFIG_ERROR = void 0;
/** @ignore */
exports.INVALID_CONFIG_ERROR = {
message: 'Invalid Config',
errorCode: 'NodeKms::INVALID_CONFIG'
};
/** @ignore */
exports.INVALID_KEY_SPEC_ERROR = {
message: 'Invalid Key Spec',
errorCode: 'NodeKms::INVALID_KEY_SPEC'
};
/** @ignore */
exports.INVALID_KEY_PAIR_SPEC_ERROR = {
message: 'Invalid Key Pair Spec',
errorCode: 'NodeKms::INVALID_KEY_PAIR_SPEC'
};
/** @ignore */
exports.INVALD_MASTER_KEY_HEX_ERROR = {
message: 'Invald Node Master Key Hex',
errorCode: 'NodeKms::INVALD_MASTER_KEY_HEX'
};
/** @ignore */
exports.INVALID_MASTER_IV_HEX_ERROR = {
message: 'Invalid Node Master Iv Hex',
errorCode: 'NodeKms::INVALID_MASTER_IV_HEX'
};