OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:plaintextBytes
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/tlslite/tlslite/utils/
Python_RC4.py
24
plaintextBytes
= stringToBytes(plaintext)
28
for x in range(len(
plaintextBytes
)):
33
plaintextBytes
[x] ^= S[t]
36
return bytesToString(
plaintextBytes
)
Python_AES.py
20
plaintextBytes
= stringToBytes(plaintext)
24
for x in range(len(
plaintextBytes
)/16):
27
blockBytes =
plaintextBytes
[x*16 : (x*16)+16]
37
plaintextBytes
[(x*16)+y] = encryptedBytes[y]
43
return bytesToString(
plaintextBytes
)
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java
297
byte[]
plaintextBytes
= loadBytes("hyts_" + "des-ede3-cbc.test"
300
plaintextBytes
, decipheredCipherText));
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java
363
byte[]
plaintextBytes
= loadBytes("hyts_" + "des-ede3-cbc.test"
366
Arrays.toString(
plaintextBytes
), Arrays.toString(decipheredCipherText));
[
all
...]
Completed in 60 milliseconds