- Command line tool & library for authenticated encryption with password-based key derivation
- Parameters: iterations = 2, memory = 1024*256, parallelism = 2
- Input: password, secure random salt (16 bytes)
- Output: key (32 bytes)
- Input: key (32 bytes), nonce (last 12 bytes from salt), plaintext (n bytes)
- Output: version 0x01 (1 byte) || salt (16 bytes) || ciphertext (n bytes) || authentication tag (16 bytes)
- noxs <command> <in_file> <out_file>
- noxs <command> <in_file> <out_file> <password_file>
- e = encrypt
- ea = encrypt & base64-encode
- d = decrypt
- da = base64-decode & decrypt
- rust_build_install
- swift_build_install_macos
- swift_build_install_linux