Searched refs:wrappingKey (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
D | SubtleCrypto.cpp | 206 ScriptPromise SubtleCrypto::wrapKey(const String& rawFormat, Key* key, Key* wrappingKey, const Dict… in wrapKey() argument 217 if (!wrappingKey) { in wrapKey() 231 if (!wrappingKey->canBeUsedForAlgorithm(wrapAlgorithm, WrapKey, exceptionState)) in wrapKey() 236 …blink::Platform::current()->crypto()->wrapKey(format, key->key(), wrappingKey->key(), wrapAlgorith… in wrapKey()
|
D | SubtleCrypto.idl | 44 …[RaisesException] Promise wrapKey(DOMString format, Key key, Key wrappingKey, Dictionary wrapAlgor…
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebCrypto.h | 109 …apKey(WebCryptoKeyFormat, const WebCryptoKey& key, const WebCryptoKey& wrappingKey, const WebCrypt… in wrapKey() argument
|
/external/chromium_org/net/third_party/nss/ssl/ |
D | ssl3con.c | 10961 PK11SymKey * wrappingKey = NULL; in ssl3_CacheWrappedMasterSecret() local 10984 wrappingKey = PK11_GetWrapKey(symKeySlot, wrapKeyIndex, in ssl3_CacheWrappedMasterSecret() 10987 if (wrappingKey) { in ssl3_CacheWrappedMasterSecret() 10988 mechanism = PK11_GetMechanism(wrappingKey); /* can't fail. */ in ssl3_CacheWrappedMasterSecret() 11001 wrappingKey = PK11_KeyGen(symKeySlot, mechanism, NULL, in ssl3_CacheWrappedMasterSecret() 11003 if (wrappingKey) { in ssl3_CacheWrappedMasterSecret() 11004 PK11_SetWrapKey(symKeySlot, wrapKeyIndex, wrappingKey); in ssl3_CacheWrappedMasterSecret() 11011 wrappingKey = in ssl3_CacheWrappedMasterSecret() 11014 if (wrappingKey) { in ssl3_CacheWrappedMasterSecret() 11015 mechanism = PK11_GetMechanism(wrappingKey); /* can't fail. */ in ssl3_CacheWrappedMasterSecret() [all …]
|