1 // Copyright (c) 2012 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.
5 #ifndef NET_CERT_X509_UTIL_H_
6 #define NET_CERT_X509_UTIL_H_
10 #include "base/memory/ref_counted.h"
11 #include "base/time.h"
12 #include "net/base/net_export.h"
20 class X509Certificate
;
24 // Returns true if the times can be used to create an X.509 certificate.
25 // Certificates can accept dates from Jan 1st, 1 to Dec 31, 9999. A bug in NSS
26 // limited the range to 1950-9999
27 // (https://bugzilla.mozilla.org/show_bug.cgi?id=786531). This function will
28 // return whether it is supported by the currently used crypto library.
29 NET_EXPORT_PRIVATE
bool IsSupportedValidityRange(base::Time not_valid_before
,
30 base::Time not_valid_after
);
32 // Creates a server bound certificate containing the public key in |key|.
33 // Domain, serial number and validity period are given as
34 // parameters. The certificate is signed by the private key in |key|.
35 // The hashing algorithm for the signature is SHA-1.
37 // See Internet Draft draft-balfanz-tls-obc-00 for more details:
38 // http://tools.ietf.org/html/draft-balfanz-tls-obc-00
39 NET_EXPORT_PRIVATE
bool CreateDomainBoundCertEC(
40 crypto::ECPrivateKey
* key
,
41 const std::string
& domain
,
43 base::Time not_valid_before
,
44 base::Time not_valid_after
,
45 std::string
* der_cert
);
47 // Comparator for use in STL algorithms that will sort client certificates by
48 // order of preference.
49 // Returns true if |a| is more preferable than |b|, allowing it to be used
50 // with any algorithm that compares according to strict weak ordering.
53 // - Prefer certificates that have a longer validity period (later
55 // - If equal, prefer certificates that were issued more recently
56 // - If equal, prefer shorter chains (if available)
57 class NET_EXPORT_PRIVATE ClientCertSorter
{
62 const scoped_refptr
<X509Certificate
>& a
,
63 const scoped_refptr
<X509Certificate
>& b
) const;
69 } // namespace x509_util
73 #endif // NET_CERT_X509_UTIL_H_