OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:modulusLengthBits
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebCryptoKeyAlgorithmParams.h
132
WebCryptoRsaHashedKeyAlgorithmParams(unsigned
modulusLengthBits
, const unsigned char* publicExponent, unsigned publicExponentSize, const WebCryptoAlgorithm& hash)
133
: m_modulusLengthBits(
modulusLengthBits
)
139
unsigned
modulusLengthBits
() const
WebCryptoKeyAlgorithm.h
64
BLINK_PLATFORM_EXPORT static WebCryptoKeyAlgorithm createRsaHashed(WebCryptoAlgorithmId, unsigned
modulusLengthBits
, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash);
WebCryptoAlgorithmParams.h
196
explicit WebCryptoRsaHashedKeyGenParams(const WebCryptoAlgorithm& hash, unsigned
modulusLengthBits
, const unsigned char* publicExponent, unsigned publicExponentSize)
197
: m_modulusLengthBits(
modulusLengthBits
)
206
unsigned
modulusLengthBits
() const { return m_modulusLengthBits; }
/external/chromium_org/content/child/webcrypto/
structured_clone.cc
78
if (algorithm.rsaHashedParams()->
modulusLengthBits
() !=
79
key.algorithm().rsaHashedParams()->
modulusLengthBits
())
webcrypto_util.cc
232
*modulus_length_bits = params->
modulusLengthBits
();
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoKeyAlgorithm.cpp
83
WebCryptoKeyAlgorithm WebCryptoKeyAlgorithm::createRsaHashed(WebCryptoAlgorithmId id, unsigned
modulusLengthBits
, const unsigned char* publicExponent, unsigned publicExponentSize, WebCryptoAlgorithmId hash)
88
return WebCryptoKeyAlgorithm(id, adoptPtr(new WebCryptoRsaHashedKeyAlgorithmParams(
modulusLengthBits
, publicExponent, publicExponentSize, createHash(hash))));
/external/chromium_org/chrome/renderer/extensions/
enterprise_platform_keys_natives.cc
51
rsaHashedKeyGen->
modulusLengthBits
());
/external/chromium_org/content/child/webcrypto/test/
rsa_ssa_unittest.cc
56
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/
SerializedScriptValue.cpp
225
// props = algorithmId:uint32_t, type:uint32_t,
modulusLengthBits
:uint32_t, publicExponentLength:uint32_t, publicExponent:byte[publicExponentLength], hashId:uint32_t
751
doWriteUint32(params->
modulusLengthBits
());
[
all
...]
Completed in 117 milliseconds