Searched refs:modulusLengthBits (Results 1 - 9 of 9) sorted by relevance

/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
H A DWebCryptoKeyAlgorithm.h64 BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned modulusLengthBits, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash);
/external/chromium_org/content/child/webcrypto/
H A Dstructured_clone.cc78 if (algorithm.rsaHashedParams()->modulusLengthBits() !=
79 key.algorithm().rsaHashedParams()->modulusLengthBits())
H A Dwebcrypto_util.cc232 *modulus_length_bits = params->modulusLengthBits();
/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/chrome/renderer/extensions/
H A Denterprise_platform_keys_natives.cc51 rsaHashedKeyGen->modulusLengthBits());
/external/chromium_org/content/child/webcrypto/test/
H A Drsa_ssa_unittest.cc56 key.algorithm().rsaHashedParams()->modulusLengthBits());
147 key.algorithm().rsaHashedParams()->modulusLengthBits());
362 private_key.algorithm().rsaHashedParams()->modulusLengthBits()));
402 ASSERT_EQ(1024u, key1.algorithm().rsaHashedParams()->modulusLengthBits());
554 public_key.algorithm().rsaHashedParams()->modulusLengthBits());
556 private_key.algorithm().rsaHashedParams()->modulusLengthBits());
585 public_key.algorithm().rsaHashedParams()->modulusLengthBits());
603 private_key.algorithm().rsaHashedParams()->modulusLengthBits());
685 public_key.algorithm().rsaHashedParams()->modulusLengthBits());
687 private_key.algorithm().rsaHashedParams()->modulusLengthBits());
[all...]
/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 2659 milliseconds