HomeSort by relevance Sort by last modified time
    Searched defs:modulusLength (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
RsaKeyGenParams.cpp 38 unsigned RsaKeyGenParams::modulusLength() const
40 return m_algorithm.rsaKeyGenParams()->modulusLength();
NormalizeAlgorithm.cpp 213 // FIXME: This is losing precision; modulusLength is supposed to be a uint32
214 int32_t modulusLength;
215 if (!raw.get("modulusLength", modulusLength))
217 if (modulusLength < 0)
223 return adoptPtr(new WebKit::WebCryptoRsaKeyGenParams(modulusLength, static_cast<const unsigned char*>(publicExponent->baseAddress()), publicExponent->byteLength()));
  /libcore/crypto/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 42 int modulusLength = ((RSAPublicKey) pubkey).getModulus().bitLength();
43 if(!(modulusLength >= MIN_MODULUS)) {
  /external/chromium_org/third_party/WebKit/public/platform/
WebCryptoAlgorithmParams.h 120 WebCryptoRsaKeyGenParams(unsigned modulusLength, const unsigned char* publicExponent, size_t publicExponentSize)
122 , m_modulusLength(modulusLength)
127 unsigned modulusLength() const { return m_modulusLength; }

Completed in 58 milliseconds