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

  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
RsaKeyGenParams.idl 34 readonly attribute unsigned long modulusLength;
RsaKeyGenParams.cpp 38 unsigned RsaKeyGenParams::modulusLength() const
40 return m_algorithm.rsaKeyGenParams()->modulusLength();
RsaKeyGenParams.h 44 unsigned modulusLength() const;
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; }
  /hardware/samsung_slsi/exynos5/libkeymaster/
tlcTeeKeymaster_if.h 307 * @param modulusLength [out] Modulus data length
315 uint32_t* modulusLength,
tlcTeeKeymaster_if.c 955 * @param modulusLength [out] Modulus data length
963 uint32_t* modulusLength,
991 mcRet = mcMap(&sessionHandle, (void*)modulus, *modulusLength, &modMapInfo);
1008 pTci->getpubkey.moduluslen = *modulusLength;
1058 *modulusLength = pTci->getpubkey.moduluslen;

Completed in 77 milliseconds