mirror of
https://github.com/OHermesJunior/nimRC4
synced 2026-01-03 02:24:48 +00:00
No description
| src | ||
| tests | ||
| LICENSE | ||
| RC4.nimble | ||
| README.md | ||
RC4
RC4 library implementation for Nim
Usage
Using this library is as simple as this:
import RC4
toRC4("Key", "Plaintext") # Returns "BBF316E8D940AF0AD3"
fromRC4("Key", "BBF316E8D940AF0AD3") # Returns "Plaintext"
Installation
Installation via nimble:
> nimble install RC4
Disclaimer
RC4 is not safe and should not be used in secure algorithms nowadays. However, RC4 was used a lot in the past, and that is why I did this.