OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAX_KEY_SIZE
(Results
1 - 2
of
2
) sorted by null
/system/core/libutils/tests/
BlobCache_test.cpp
30
MAX_KEY_SIZE
= 6,
36
mBC = new BlobCache(
MAX_KEY_SIZE
, MAX_VALUE_SIZE, MAX_TOTAL_SIZE);
117
char key[
MAX_KEY_SIZE
+1];
119
for (int i = 0; i <
MAX_KEY_SIZE
+1; i++) {
122
mBC->set(key,
MAX_KEY_SIZE
+1, "bbbb", 4);
123
ASSERT_EQ(size_t(0), mBC->get(key,
MAX_KEY_SIZE
+1, buf, 4));
148
ASSERT_TRUE(MAX_TOTAL_SIZE <
MAX_KEY_SIZE
+ MAX_VALUE_SIZE);
149
ASSERT_TRUE(
MAX_KEY_SIZE
< MAX_TOTAL_SIZE);
151
enum { bufSize = MAX_TOTAL_SIZE -
MAX_KEY_SIZE
+ 1 };
153
char key[
MAX_KEY_SIZE
];
[
all
...]
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-api-fst.h
43
#define
MAX_KEY_SIZE
64 /* # of ASCII char's needed to represent a key */
56
char keyMaterial[
MAX_KEY_SIZE
+1]; /* Raw key data in ASCII, e.g., user input or KAT values */
Completed in 75 milliseconds