RNCryptor-python icon indicating copy to clipboard operation
RNCryptor-python copied to clipboard

Python implementation of RNCryptor

Results 3 RNCryptor-python issues
Sort by recently updated
recently updated
newest added

Hi there, while trying to use this project, I've stumbled on the issue that it is not possible to use RNCryptor to en-/decrypt bytes(). Specifically [here](https://github.com/RNCryptor/RNCryptor-python/blob/2004d7db34f1a91082b22a4a55cb2ee9e5e07a0d/rncryptor.py#L96) the result is always...

The current code only works correctly under Python 2. Apparently in Python 3 it's not possible to use `data[1]` to access a byte, instead we have to use `data[1:2]`. This...