https://github.com/rwinkhart/rcw
A cascading cryptography agent meant to be embedded within Go programs.
https://github.com/rwinkhart/rcw
aes cascade cascade-encryption cascading cascading-encryption chacha20 cryptography decryption encryption encryption-decryption multiple-encryption security
Last synced: 2 months ago
JSON representation
A cascading cryptography agent meant to be embedded within Go programs.
- Host: GitHub
- URL: https://github.com/rwinkhart/rcw
- Owner: rwinkhart
- License: mit
- Created: 2025-04-02T04:06:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-11-23T08:46:53.000Z (5 months ago)
- Last Synced: 2025-11-23T10:18:58.429Z (5 months ago)
- Topics: aes, cascade, cascade-encryption, cascading, cascading-encryption, chacha20, cryptography, decryption, encryption, encryption-decryption, multiple-encryption, security
- Language: Go
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RCW (Randall's Cryptographic Wrappers)
RCW is a cascading symmetric cryptography agent meant to be embedded within Go programs.
It encrypts all data with both AES256-GCM and ChaCha20-Poly1305.
Passphrases are securely cached for three minutes and RPC authentication is used to
ensure that only the binary+user responsible for caching the passphrase can utilize it.
This feature is supported on Linux, FreeBSD, MacOS, and Windows.
RCW also features a sanity check to ensure no data loss occurs due to a user entering the
incorrect passphrase during encryption.
Please note that RCW is a work-in-progress and breaking changes should be expected.
Future versions may not be capable of decrypting the output of the current version.
> [!WARNING]
>It is your responsibility to assess the security and stability of RCW and to ensure it meets your needs before using it.
>I am not responsible for any data loss or breaches of your information resulting from the use of RCW.
>RCW is a new project that is constantly being updated, and though safety and security are priorities, they cannot be guaranteed.
# Usage
For now, please reference [example.go](https://github.com/rwinkhart/randalls-cryptographic-wrappers/blob/main/example.go).