You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
288 B

import {AES256Cryptor} from './crypt/AES256Cryptor'
/**
* Set of values that can be overridden externally to modify the behavior of this package.
*/
const pkg = {
/** Factory for producing the default Cryptor instance. */
cryptor: AES256Cryptor.getFactory(),
}
export { pkg }