Searched defs:extractable (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
H A DWebCryptoKey.cpp42 WebCryptoKeyPrivate(PassOwnPtr<WebCryptoKeyHandle> handle, WebCryptoKeyType type, bool extractable, const WebCryptoAlgorithm& algorithm, WebCryptoKeyUsageMask usages) argument
45 , extractable(extractable)
53 const bool extractable; member in class:WebKit::WebCryptoKeyPrivate
58 WebCryptoKey WebCryptoKey::create(WebCryptoKeyHandle* handle, WebCryptoKeyType type, bool extractable, const WebCryptoAlgorithm& algorithm, WebCryptoKeyUsageMask usages) argument
61 key.m_private = adoptRef(new WebCryptoKeyPrivate(adoptPtr(handle), type, extractable, algorithm, usages));
75 bool WebCryptoKey::extractable() const function in class:WebKit::WebCryptoKey
77 return m_private->extractable;
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DKey.cpp107 bool Key::extractable() const function in class:WebCore::Key
109 return m_key.extractable();
H A DSubtleCrypto.cpp196 ScriptObject SubtleCrypto::generateKey(const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& es) argument
216 platformCrypto->generateKey(algorithm, extractable, keyUsages, result);
220 ScriptObject SubtleCrypto::importKey(const String& rawFormat, ArrayBufferView* keyData, const Dictionary& rawAlgorithm, bool extractable, const Vector<String>& rawKeyUsages, ExceptionState& es) argument
253 platformCrypto->importKey(format, keyDataBytes, keyData->byteLength(), algorithm, extractable, keyUsages, result);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebCrypto.h125 virtual void generateKey(const WebCryptoAlgorithm&, bool extractable, WebCryptoKeyUsageMask, WebCryptoKeyOperationResult&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
126 virtual void importKey(WebCryptoKeyFormat, const unsigned char* keyData, size_t keyDataSize, const WebCryptoAlgorithm&, bool extractable, WebCryptoKeyUsageMask, WebCryptoKeyOperationResult&) { WEBKIT_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/net/third_party/mozilla_security_manager/
H A DnsPKCS12Blob.cpp210 // non-extractable if needed.
234 // non-extractable.
241 // private keys as non-extractable.
246 // Mark the private key as non-extractable.
302 // a token. On success, store the attribute in |extractable| and return
305 isExtractable(SECKEYPrivateKey *privKey, PRBool *extractable) argument
315 *extractable = !!(*(CK_BBOOL*)value.data);
441 LOG(ERROR) << "Private key is not extractable";
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DMockWebCrypto.cpp159 void MockWebCrypto::generateKey(const WebKit::WebCryptoAlgorithm& algorithm, bool extractable, WebKit::WebCryptoKeyUsageMask usages, WebKit::WebCryptoKeyOperationResult& result) argument
161 result.completeWithKey(WebKit::WebCryptoKey::create(0, WebKit::WebCryptoKeyTypePrivate, extractable, algorithm, usages));
164 void MockWebCrypto::importKey(WebKit::WebCryptoKeyFormat, const unsigned char* keyData, size_t keyDataSize, const WebKit::WebCryptoAlgorithm& algorithm, bool extractable, WebKit::WebCryptoKeyUsageMask usages, WebKit::WebCryptoKeyOperationResult& result) argument
176 result.completeWithKey(WebKit::WebCryptoKey::create(0, type, extractable, algorithm, usages));

Completed in 186 milliseconds