n2n-encryption
This is best used on small strings.
For example, on a 30kb file the key will be 166kb and the encrypted file will be over 1GB in size.
- type in a string
- encode
- this will encode the string using a randomly generated key that's as long as the string is in bytes
- you can save the string and key (saved in seperate JSON files, one starting with 'string' and the other starting with 'key')
- you can load them as well.
- you can also load in strings (imported in correct JSON format below) and encode them.
- you can also load in files to be encrypted. But i'd recommend small files!
{"storageString":"INSERTSTRINGHERE","storageBy":null,"storageInt":null}
save the file as stringimport.JSON
and when you want to load it - type in 'import'.
as an example
That's all folks for now
TODO:
Create API or frontend web app to go along with this - DONE!
Available at https://github.com/tbal999/n2n-encrypt-api