dotencr
Version:
Encrypt and decrypt individual lines inside a .env file. Supports multiple encryption keys. Keys and dotenv files can be read text file or read from the environment.
17 lines • 523 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* The encryption key name cannot be one of the reserved words.
*/
exports.keyNames = ["WILDCARD"];
/**
* The encryption key name cannot be one of the reserved words.
*/
exports.keyNamesForCipheredVariable = [
"VERY_LONG_IMPROBABLE_RESERVED_WORD_USED_FOR_TESTING",
];
/**
* The encryption key name cannot be one of the reserved words.
*/
exports.keyNamesForPlainTextVariable = ["WILDCARD"];
//# sourceMappingURL=reserved_words.js.map