| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/webcrypto/openssl/aes_algorithm_openssl.h" | 5 #include "components/webcrypto/algorithms/aes.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "components/webcrypto/algorithms/key.h" |
| 9 #include "components/webcrypto/algorithms/util_openssl.h" |
| 8 #include "components/webcrypto/crypto_data.h" | 10 #include "components/webcrypto/crypto_data.h" |
| 9 #include "components/webcrypto/jwk.h" | 11 #include "components/webcrypto/jwk.h" |
| 10 #include "components/webcrypto/openssl/key_openssl.h" | |
| 11 #include "components/webcrypto/openssl/util_openssl.h" | |
| 12 #include "components/webcrypto/status.h" | 12 #include "components/webcrypto/status.h" |
| 13 #include "components/webcrypto/webcrypto_util.h" | 13 #include "components/webcrypto/webcrypto_util.h" |
| 14 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" | 14 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" |
| 15 | 15 |
| 16 namespace webcrypto { | 16 namespace webcrypto { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 // Creates an AES algorithm name for the given key size (in bytes). For | 20 // Creates an AES algorithm name for the given key size (in bytes). For |
| 21 // instance "A128CBC" is the result of suffix="CBC", keylen_bytes=16. | 21 // instance "A128CBC" is the result of suffix="CBC", keylen_bytes=16. |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 } | 168 } |
| 169 | 169 |
| 170 Status AesAlgorithm::GetKeyLength( | 170 Status AesAlgorithm::GetKeyLength( |
| 171 const blink::WebCryptoAlgorithm& key_length_algorithm, | 171 const blink::WebCryptoAlgorithm& key_length_algorithm, |
| 172 bool* has_length_bits, | 172 bool* has_length_bits, |
| 173 unsigned int* length_bits) const { | 173 unsigned int* length_bits) const { |
| 174 return GetAesKeyLength(key_length_algorithm, has_length_bits, length_bits); | 174 return GetAesKeyLength(key_length_algorithm, has_length_bits, length_bits); |
| 175 } | 175 } |
| 176 | 176 |
| 177 } // namespace webcrypto | 177 } // namespace webcrypto |
| OLD | NEW |