OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "net/cert/internal/verification_policy.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 // TODO(eroman): There is no intention to implement this for non-OpenSSL. Remove |
| 10 // this branch once the migration is complete. This could have been done as a |
| 11 // conditional file (_openssl.cc) in the build file instead, but that is likely |
| 12 // not worth the effort at this point. |
| 13 |
| 14 #if defined(USE_OPENSSL) |
| 15 #include <openssl/obj_mac.h> |
| 16 #endif |
| 17 |
| 18 namespace net { |
| 19 |
| 20 BaseVerificationPolicy::BaseVerificationPolicy( |
| 21 size_t min_rsa_modulus_length_bits) |
| 22 : min_rsa_modulus_length_bits_(min_rsa_modulus_length_bits) {} |
| 23 |
| 24 bool BaseVerificationPolicy::IsAcceptableDigestAlgorithm( |
| 25 DigestAlgorithm algorithm) const { |
| 26 // This is all of the enum possible values so equivalent to just returning |
| 27 // true. However it is a bit more explicit in case new algorithms are added. |
| 28 switch (algorithm) { |
| 29 case DigestAlgorithm::Sha1: |
| 30 case DigestAlgorithm::Sha256: |
| 31 case DigestAlgorithm::Sha384: |
| 32 case DigestAlgorithm::Sha512: |
| 33 return true; |
| 34 } |
| 35 return false; |
| 36 } |
| 37 |
| 38 bool BaseVerificationPolicy::IsAcceptableCurveForEcdsa(int curve_nid) const { |
| 39 #if defined(USE_OPENSSL) |
| 40 switch (curve_nid) { |
| 41 case NID_X9_62_prime256v1: |
| 42 case NID_secp384r1: |
| 43 case NID_secp521r1: |
| 44 return true; |
| 45 } |
| 46 #endif |
| 47 return false; |
| 48 } |
| 49 |
| 50 bool BaseVerificationPolicy::IsAcceptableModulusLengthForRsa( |
| 51 size_t modulus_length_bits) const { |
| 52 return modulus_length_bits >= min_rsa_modulus_length_bits_; |
| 53 } |
| 54 |
| 55 } // namespace net |
OLD | NEW |