OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxKeySize
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/tlslite/tlslite/
HandshakeSettings.py
10
@sort: minKeySize,
maxKeySize
, cipherNames, certificateTypes,
20
@type
maxKeySize
: int
21
@ivar
maxKeySize
: The maximum bit length for asymmetric keys.
77
self.
maxKeySize
= 8193
89
other.
maxKeySize
= self.
maxKeySize
125
if other.
maxKeySize
<512:
126
raise ValueError("
maxKeySize
too small")
127
if other.
maxKeySize
>16384:
128
raise ValueError("
maxKeySize
too large"
[
all
...]
TLSConnection.py
739
if numBits(N) > settings.
maxKeySize
:
[
all
...]
/system/core/include/utils/
BlobCache.h
41
// with key and value sizes less than or equal to
maxKeySize
and
44
BlobCache(size_t
maxKeySize
, size_t maxValueSize, size_t maxTotalSize);
51
// put in the cache (based on the
maxKeySize
, maxValueSize, and maxTotalSize
/frameworks/native/opengl/libs/EGL/
egl_cache.cpp
42
static const size_t
maxKeySize
= MAX_EGL_CACHE_KEY_SIZE;
195
mBlobCache = new BlobCache(
maxKeySize
, maxValueSize, maxTotalSize);
/system/core/libutils/
BlobCache.cpp
38
BlobCache::BlobCache(size_t
maxKeySize
, size_t maxValueSize, size_t maxTotalSize):
39
mMaxKeySize(
maxKeySize
),
Completed in 283 milliseconds