HomeSort by relevance Sort by last modified time
    Searched refs:maxKeySize (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/tlslite/tlslite/
handshakesettings.py 26 @sort: minKeySize, maxKeySize, cipherNames, macNames, certificateTypes,
36 @type maxKeySize: int
37 @ivar maxKeySize: The maximum bit length for asymmetric keys.
120 self.maxKeySize = 8193
137 other.maxKeySize = self.maxKeySize
168 if other.maxKeySize<512:
169 raise ValueError("maxKeySize too small")
170 if other.maxKeySize>16384:
171 raise ValueError("maxKeySize too large"
    [all...]
tlsconnection.py     [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 39 BlobCache::BlobCache(size_t maxKeySize, size_t maxValueSize, size_t maxTotalSize):
40 mMaxKeySize(maxKeySize),

Completed in 428 milliseconds