aescrypt
aescrypt copied to clipboard
Fix namespace issue with base64
There was an issue with Base64 being interpreted as a part of AESCrypt instead of its own class:
token = AESCrypt.encrypt(message, password)
NameError: uninitialized constant AESCrypt::Base64
All I added was the scope resolution operator.