Encryption Module

I have updated my KCG Encryption module out on GitHub again. It is still all XOJO API 2.0 native code and now contains:
Base64
AES-256
RSA-2048
Hash256
Hash512
TwoFish
Blowfish (CBC)
RC4 (ARC4)
Quantum Resistant 512
Hybrid Quantum Resistant 1024
Bcrypt
SHA-256
SHA3-256

You can find it here:
https://github.com/cyberfly-us/KCG-Encryption

7 Likes

I’m curious… why do you have all the others besides these four when they’re all available in the built-in Crypto module?

Well is says on GitHub it’s a demo of the cryptography. I do use the Crypto module whenever possible. However, it is not always strait forward and can use a little extra code around it. For my purposes I wanted a a module that I could copy between projects and had simpler function calls.

2 Likes