OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CryptoKey
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
CryptoKey.h
46
class
CryptoKey
: public GarbageCollectedFinalized<
CryptoKey
>, public ScriptWrappable {
49
static
CryptoKey
* create(const WebCryptoKey& key)
51
return new
CryptoKey
(key);
54
~
CryptoKey
();
73
explicit
CryptoKey
(const WebCryptoKey&);
CryptoKey.cpp
32
#include "modules/crypto/
CryptoKey
.h"
65
//
CryptoKey
.usages. It must be kept ordered as described by the Web Crypto
130
CryptoKey
::~
CryptoKey
()
134
CryptoKey
::
CryptoKey
(const WebCryptoKey& key)
139
String
CryptoKey
::type() const
144
bool
CryptoKey
::extractable() const
153
Vector<String>
CryptoKey
::usages() const
164
bool
CryptoKey
::canBeUsedForAlgorithm(const WebCryptoAlgorithm& algorithm, WebCryptoOperation op, CryptoResult* r (…)
[
all
...]
Completed in 2732 milliseconds