This repo provides a list of utility modules for common crypto operations.
- factory methods to construct an AES-GCM cipher with a 96-bit nonce from the input raw key bytes
- encrypt & decrypt methods, the output ciphertext is prefixed with the random nonce.
- factory methods to construct an DES or 3DES cipher from the raw key bytes or hex text
- encrypt & decrypt methods
- verify the constructed cipher against the check value
Helper class to construct a 3DES key encryption key from a list of components.
Common RSA operations for plugins to use. Targeting use-cases such as key extraction.
Releases are triggered with tagging. A sample release cycle would follow the following steps:
- Bump the version in
VERSION.txtfile and push to master - Execute
git tag x.x.x(same as the version in VERSION.txt) andgit push origin x.x.x