OLD | NEW |
---|---|
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef NET_CERT_INTERNAL_VERIFY_NAME_MATCH_H_ | 5 #ifndef NET_CERT_INTERNAL_VERIFY_NAME_MATCH_H_ |
6 #define NET_CERT_INTERNAL_VERIFY_NAME_MATCH_H_ | 6 #define NET_CERT_INTERNAL_VERIFY_NAME_MATCH_H_ |
7 | 7 |
8 #include "base/strings/string_piece.h" | 8 #include "base/strings/string_piece.h" |
9 #include "net/base/net_export.h" | 9 #include "net/base/net_export.h" |
10 | 10 |
11 namespace net { | 11 namespace net { |
12 | 12 |
13 namespace der { | 13 namespace der { |
14 class Input; | 14 class Input; |
15 } // namespace der | 15 } // namespace der |
16 | 16 |
17 // Compare DER-encoded X.501 Name values according to RFC 5280 rules. | 17 // Compare DER-encoded X.501 Name values according to RFC 5280 rules. |
18 // |a_rdn_sequence| and |b_rdn_sequence| should be the DER-encoded RDNSequence | 18 // |a_rdn_sequence| and |b_rdn_sequence| should be the DER-encoded RDNSequence |
19 // values (not including the Sequence tag). | 19 // values (not including the Sequence tag). |
20 // Returns true if |a_rdn_sequence| and |b_rdn_sequence| match. | 20 // Returns true if |a_rdn_sequence| and |b_rdn_sequence| match. |
21 NET_EXPORT bool VerifyNameMatch(const der::Input& a_rdn_sequence, | 21 NET_EXPORT bool VerifyNameMatch(const der::Input& a_rdn_sequence, |
22 const der::Input& b_rdn_sequence); | 22 const der::Input& b_rdn_sequence); |
23 | 23 |
24 // Compare |name_rdn_sequence| and |parent_rdn_sequence| and return true if | |
eroman
2015/08/26 19:56:44
Compare --> Compares
mattm
2015/08/29 01:37:19
Done.
| |
25 // |name_rdn_sequence| is within the subtree defined by |parent_rdn_sequence| as | |
26 // defined by RFC 5280 section 7.1. |name_rdn_sequence| and | |
27 // |parent_rdn_sequence| should be the DER-encoded sequence values (not | |
28 // including the Sequence tag). | |
29 NET_EXPORT bool VerifyNameInSubtree(const der::Input& name_rdn_sequence, | |
30 const der::Input& parent_rdn_sequence); | |
31 | |
32 // Helper functions: | |
33 | |
34 // Returns true if |name_rdn_sequence| contains an emailAddress attribute type. | |
35 bool NameContainsEmailAddress(const der::Input& name_rdn_sequence); | |
36 | |
37 // Returns the commonName attribute from |name_rdn_sequence| in normalized | |
38 // UTF-8, or an empty string if |name_rdn_sequence| did not contain a commonName | |
39 // or there was a parsing or normalizing error. | |
40 std::string GetNormalizedCommonNameFromName( | |
41 const der::Input& name_rdn_sequence); | |
42 | |
24 } // namespace net | 43 } // namespace net |
25 | 44 |
26 #endif // NET_CERT_INTERNAL_VERIFY_NAME_MATCH_H_ | 45 #endif // NET_CERT_INTERNAL_VERIFY_NAME_MATCH_H_ |
OLD | NEW |