OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:random_bytes
(Results
1 - 7
of
7
) sorted by null
/external/ppp/pppd/
magic.h
49
void
random_bytes
__P((unsigned char *buf, int len));
magic.c
87
*
random_bytes
- Fill a buffer with random bytes.
90
random_bytes
(unsigned char *buf, int len)
function
chap-md5.c
53
random_bytes
(cp, clen);
chap_ms.c
177
random_bytes
(challenge, 8);
189
random_bytes
(challenge, 16);
/external/chromium/chrome/browser/sync/util/
crypto_helpers_unittest.cc
21
std::string
random_bytes
(i+1, ' ');
23
GetRandomBytes(&
random_bytes
[0], i);
24
ASSERT_EQ(
random_bytes
[i], ' ');
25
} while (
random_bytes
[i - 1] == ' ');
crypto_helpers.cc
66
std::string
random_bytes
(kNumberBytes, ' ');
67
GetRandomBytes(&
random_bytes
[0], kNumberBytes);
69
base::Base64Encode(
random_bytes
, &base64_encoded_bytes);
/external/chromium/crypto/
symmetric_key_mac.cc
74
void*
random_bytes
= CreateRandomBytes((key_size_in_bits + 7) / 8);
local
75
if (!
random_bytes
)
77
SymmetricKey *key = new SymmetricKey(
random_bytes
, key_size_in_bits);
78
free(
random_bytes
);
Completed in 1900 milliseconds