Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(655)

Unified Diff: components/webcrypto/algorithms/aes.cc

Issue 1355873002: [refactor] More post-NSS WebCrypto cleanups (utility functions). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address David's comments Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/webcrypto/BUILD.gn ('k') | components/webcrypto/algorithms/aes_gcm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webcrypto/algorithms/aes.cc
diff --git a/components/webcrypto/algorithms/aes.cc b/components/webcrypto/algorithms/aes.cc
index 582c5b6274cb0283649441408bd2a37392519bda..ed5bbb62a0f07cb1be6f5989b1c9978091ed184c 100644
--- a/components/webcrypto/algorithms/aes.cc
+++ b/components/webcrypto/algorithms/aes.cc
@@ -5,12 +5,13 @@
#include "components/webcrypto/algorithms/aes.h"
#include "base/logging.h"
-#include "components/webcrypto/algorithms/util_openssl.h"
+#include "components/webcrypto/algorithms/secret_key_util.h"
#include "components/webcrypto/crypto_data.h"
#include "components/webcrypto/jwk.h"
#include "components/webcrypto/key.h"
#include "components/webcrypto/status.h"
#include "components/webcrypto/webcrypto_util.h"
+#include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h"
#include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h"
namespace webcrypto {
@@ -53,10 +54,14 @@ Status AesAlgorithm::GenerateKey(const blink::WebCryptoAlgorithm& algorithm,
if (status.IsError())
return status;
- unsigned int keylen_bits;
- status = GetAesKeyGenLengthInBits(algorithm.aesKeyGenParams(), &keylen_bits);
- if (status.IsError())
- return status;
+ unsigned int keylen_bits = algorithm.aesKeyGenParams()->lengthBits();
+
+ // BoringSSL does not support 192-bit AES.
+ if (keylen_bits == 192)
+ return Status::ErrorAes192BitUnsupported();
+
+ if (keylen_bits != 128 && keylen_bits != 256)
+ return Status::ErrorGenerateAesKeyLength();
return GenerateWebCryptoSecretKey(
blink::WebCryptoKeyAlgorithm::createAes(algorithm.id(), keylen_bits),
@@ -81,9 +86,13 @@ Status AesAlgorithm::ImportKeyRaw(const CryptoData& key_data,
blink::WebCryptoKeyUsageMask usages,
blink::WebCryptoKey* key) const {
const unsigned int keylen_bytes = key_data.byte_length();
- Status status = VerifyAesKeyLengthForImport(keylen_bytes);
- if (status.IsError())
- return status;
+
+ // BoringSSL does not support 192-bit AES.
+ if (keylen_bytes == 24)
+ return Status::ErrorAes192BitUnsupported();
+
+ if (keylen_bytes != 16 && keylen_bytes != 32)
+ return Status::ErrorImportAesKeyLength();
// No possibility of overflow.
unsigned int keylen_bits = keylen_bytes * 8;
@@ -101,8 +110,8 @@ Status AesAlgorithm::ImportKeyJwk(const CryptoData& key_data,
blink::WebCryptoKey* key) const {
std::vector<uint8_t> raw_data;
JwkReader jwk;
- Status status = ReadSecretKeyNoExpectedAlg(key_data, extractable, usages,
- &raw_data, &jwk);
+ Status status = ReadSecretKeyNoExpectedAlgJwk(key_data, extractable, usages,
+ &raw_data, &jwk);
if (status.IsError())
return status;
@@ -163,7 +172,17 @@ Status AesAlgorithm::GetKeyLength(
const blink::WebCryptoAlgorithm& key_length_algorithm,
bool* has_length_bits,
unsigned int* length_bits) const {
- return GetAesKeyLength(key_length_algorithm, has_length_bits, length_bits);
+ *has_length_bits = true;
+ *length_bits = key_length_algorithm.aesDerivedKeyParams()->lengthBits();
+
+ if (*length_bits == 128 || *length_bits == 256)
+ return Status::Success();
+
+ // BoringSSL does not support 192-bit AES.
+ if (*length_bits == 192)
+ return Status::ErrorAes192BitUnsupported();
+
+ return Status::ErrorGetAesKeyLength();
}
} // namespace webcrypto
« no previous file with comments | « components/webcrypto/BUILD.gn ('k') | components/webcrypto/algorithms/aes_gcm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698