We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bebb2a1 commit f57e330Copy full SHA for f57e330
pynuodb/crypt.py
@@ -286,7 +286,8 @@ def transform(self, data):
286
automatically handles encoding bytes into an extended ASCII encoding [0,255] w/ 1 byte per character
287
Python 3:
288
bytes objects must be converted into extended ASCII, latin-1 uses the desired range of [0,255]
289
- For unicode strings (characters consisting of more than 1 byte) the values are broken into 1 byte sections and shifted
+ For utf-8 strings (characters consisting of more than 1 byte) the values are broken into 1 byte sections and shifted
290
+ The RC4 stream cipher processes 1 byte at a time, as does ord when converting character values to integers
291
"""
292
transformed = []
293
state = self.__state
0 commit comments