HomeSort by relevance Sort by last modified time
    Searched refs:AesAlgorithm (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/content/child/webcrypto/openssl/
aes_key_openssl.cc 20 AesAlgorithm::AesAlgorithm(blink::WebCryptoKeyUsageMask all_key_usages,
25 AesAlgorithm::AesAlgorithm(const std::string& jwk_suffix)
33 Status AesAlgorithm::VerifyKeyUsagesBeforeGenerateKey(
38 Status AesAlgorithm::GenerateSecretKey(
57 Status AesAlgorithm::VerifyKeyUsagesBeforeImportKey(
69 Status AesAlgorithm::ImportKeyRaw(const CryptoData& key_data,
90 Status AesAlgorithm::ImportKeyJwk(const CryptoData& key_data,
105 Status AesAlgorithm::ExportKeyRaw(const blink::WebCryptoKey& key
    [all...]
aes_key_openssl.h 16 class AesAlgorithm : public AlgorithmImplementation {
23 AesAlgorithm(blink::WebCryptoKeyUsageMask all_key_usages,
26 // This is the same as the other AesAlgorithm constructor where
29 explicit AesAlgorithm(const std::string& jwk_suffix);
aes_gcm_openssl.cc 61 class AesGcmImplementation : public AesAlgorithm {
63 AesGcmImplementation() : AesAlgorithm("GCM") {}
aes_kw_openssl.cc 64 class AesKwImplementation : public AesAlgorithm {
67 : AesAlgorithm(
aes_cbc_openssl.cc 112 class AesCbcImplementation : public AesAlgorithm {
114 AesCbcImplementation() : AesAlgorithm("CBC") {}
aes_ctr_openssl.cc 261 class AesCtrImplementation : public AesAlgorithm {
263 AesCtrImplementation() : AesAlgorithm("CTR") {}
  /external/chromium_org/content/child/webcrypto/nss/
aes_key_nss.cc 20 AesAlgorithm::AesAlgorithm(CK_MECHANISM_TYPE import_mechanism,
30 AesAlgorithm::AesAlgorithm(CK_MECHANISM_TYPE import_mechanism,
41 Status AesAlgorithm::VerifyKeyUsagesBeforeGenerateKey(
46 Status AesAlgorithm::GenerateSecretKey(
66 Status AesAlgorithm::VerifyKeyUsagesBeforeImportKey(
77 Status AesAlgorithm::ImportKeyRaw(const CryptoData& key_data,
100 Status AesAlgorithm::ImportKeyJwk(const CryptoData& key_data,
115 Status AesAlgorithm::ExportKeyRaw(const blink::WebCryptoKey& key
    [all...]
aes_key_nss.h 18 class AesAlgorithm : public AlgorithmImplementation {
27 AesAlgorithm(CK_MECHANISM_TYPE import_mechanism,
32 // This is the same as the other AesAlgorithm constructor, however
36 AesAlgorithm(CK_MECHANISM_TYPE import_mechanism,
aes_gcm_nss.cc 142 class AesGcmImplementation : public AesAlgorithm {
144 AesGcmImplementation() : AesAlgorithm(CKM_AES_GCM, "GCM") {}
153 return AesAlgorithm::VerifyKeyUsagesBeforeImportKey(format, usage_mask);
162 return AesAlgorithm::VerifyKeyUsagesBeforeGenerateKey(usage_mask);
aes_cbc_nss.cc 101 class AesCbcImplementation : public AesAlgorithm {
103 AesCbcImplementation() : AesAlgorithm(CKM_AES_CBC, "CBC") {}
aes_kw_nss.cc 129 class AesKwCryptoAlgorithmNss : public AesAlgorithm {
132 : AesAlgorithm(

Completed in 283 milliseconds