Searched defs:modulusLengthBits (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCryptoKeyAlgorithm.cpp83 WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createRsaHashed(WebCryptoAlgorithmId id, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash) argument
88 return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoRsaHashedKeyAlgorithmParams(modulusLengthBits, publicExponent, publicExponentSize, createHash(hash))));
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCryptoKeyAlgorithmParams.h132 WebCryptoRsaHashedKeyAlgorithmParams(unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, const WebCryptoAlgorithm& hash) argument
133 : m_modulusLengthBits(modulusLengthBits)
139 unsigned modulusLengthBits() const function in class:blink::WebCryptoRsaHashedKeyAlgorithmParams
H A DWebCryptoAlgorithmParams.h196 explicit WebCryptoRsaHashedKeyGenParams(const WebCryptoAlgorithm& hash, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize) argument
197 : m_modulusLengthBits(modulusLengthBits)
206 unsigned modulusLengthBits() const { return m_modulusLengthBits; } function in class:blink::WebCryptoRsaHashedKeyGenParams
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DSerializedScriptValue.cpp225 // props = algorithmId:uint32_t, type:uint32_t, modulusLengthBits:uint32_t, publicExponentLength:uint32_t, publicExponent:byte[publicExponentLength], hashId:uint32_t
751 doWriteUint32(params->modulusLengthBits());
2443 uint32_t modulusLengthBits; local
2444 if (!doReadUint32(&modulusLengthBits))
2460 algorithm = blink::WebCryptoKeyAlgorithm::createRsaHashed(id, modulusLengthBits, publicExponent, publicExponentSize, hash);

Completed in 942 milliseconds