OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:randomBytes
(Results
1 - 5
of
5
) sorted by null
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
RandomTest.java
68
byte[]
randomBytes
= new byte[100];
69
r.nextBytes(
randomBytes
);
70
byte firstByte =
randomBytes
[0];
71
for (int counter = 1; counter <
randomBytes
.length; counter++)
72
if (
randomBytes
[counter] != firstByte)
/external/webkit/Source/WebCore/platform/network/
FormDataBuilder.cpp
127
Vector<char>
randomBytes
;
131
randomBytes
.append(alphaNumericEncodingMap[(randomness >> 24) & 0x3F]);
132
randomBytes
.append(alphaNumericEncodingMap[(randomness >> 16) & 0x3F]);
133
randomBytes
.append(alphaNumericEncodingMap[(randomness >> 8) & 0x3F]);
134
randomBytes
.append(alphaNumericEncodingMap[randomness & 0x3F]);
137
boundary.append(
randomBytes
);
/libcore/luni/src/test/java/tests/api/java/util/
RandomTest.java
68
byte[]
randomBytes
= new byte[100];
69
r.nextBytes(
randomBytes
);
70
byte firstByte =
randomBytes
[0];
71
for (int counter = 1; counter <
randomBytes
.length; counter++)
72
if (
randomBytes
[counter] != firstByte)
/libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1withDSA_SignatureImpl.java
196
byte[]
randomBytes
;
219
randomBytes
= new byte[20];
223
appRandom.nextBytes(
randomBytes
);
225
k = new BigInteger(1,
randomBytes
);
/frameworks/base/services/java/com/android/server/
BackupManagerService.java
[
all
...]
Completed in 251 milliseconds