OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getRandomBytes
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/tlslite/tlslite/utils/
win32prng.c
7
static PyObject*
getRandomBytes
(PyObject *self, PyObject *args)
53
{"
getRandomBytes
", (PyCFunction)
getRandomBytes
, METH_VARARGS},
cryptomath.py
76
def
getRandomBytes
(howMany):
83
def
getRandomBytes
(howMany):
99
def
getRandomBytes
(howMany):
106
def
getRandomBytes
(howMany):
107
s = win32prng.
getRandomBytes
(howMany)
114
def
getRandomBytes
(howMany):
212
bytes =
getRandomBytes
(numChars)
228
bytes =
getRandomBytes
(howManyBytes)
PyCrypto_RSAKey.py
58
return bytesToString(
getRandomBytes
(numBytes))
RSAKey.py
252
padBytes =
getRandomBytes
(padLength * 2)
/libcore/luni/src/test/java/tests/security/
SecureRandomTest.java
56
byte[] testRandom1 =
getRandomBytes
(secureRandom1);
57
byte[] testRandom2 =
getRandomBytes
(secureRandom2);
64
private byte[]
getRandomBytes
(SecureRandom random) {
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java
256
myRandom.engineSetSeed(
getRandomBytes
(DIGEST_LENGTH));
300
updateSeed(
getRandomBytes
(DIGEST_LENGTH));
547
private static byte[]
getRandomBytes
(int byteCount) {
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
WebappAuthenticator.java
189
// is deployed to all users.
getRandomBytes
, which reads from /dev/urandom,
195
byte[] seed =
getRandomBytes
(MAC_KEY_BYTE_COUNT);
208
private static byte[]
getRandomBytes
(int count) {
/external/chromium_org/third_party/tlslite/tlslite/
TLSConnection.py
11
from utils.cryptomath import
getRandomBytes
465
clientRandom =
getRandomBytes
(32)
[
all
...]
mathtls.py
88
salt = bytesToString(
getRandomBytes
(16))
TLSRecordLayer.py
12
from utils.cryptomath import
getRandomBytes
[
all
...]
Completed in 277 milliseconds