Searched defs:KeyAlgorithm (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DKeyAlgorithm.h42 class KeyAlgorithm : public GarbageCollectedFinalized<KeyAlgorithm>, public ScriptWrappable { class in namespace:WebCore
44 virtual ~KeyAlgorithm();
46 static KeyAlgorithm* create(const blink::WebCryptoKeyAlgorithm&);
47 static KeyAlgorithm* createHash(const blink::WebCryptoAlgorithm&);
59 explicit KeyAlgorithm(const blink::WebCryptoKeyAlgorithm&);
65 DEFINE_TYPE_CASTS(thisType, KeyAlgorithm, value, value->is##thisType(), value.is##thisType())
H A DKeyAlgorithm.cpp32 #include "modules/crypto/KeyAlgorithm.h"
44 KeyAlgorithm::~KeyAlgorithm()
48 KeyAlgorithm* KeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm)
52 return new KeyAlgorithm(algorithm);
64 KeyAlgorithm* KeyAlgorithm::createHash(const blink::WebCryptoAlgorithm& hash)
68 return new KeyAlgorithm(blink::WebCryptoKeyAlgorithm(hash.id(), nullptr));
71 KeyAlgorithm function in class:WebCore::KeyAlgorithm
[all...]

Completed in 89 milliseconds