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

Side by Side Diff: net/cert/x509_util_ios.h

Issue 2746103003: Add X509CertificateBytes which uses CRYPTO_BUFFER instead of macOS-native certificate types. (Closed)
Patch Set: rebase Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « net/cert/x509_certificate_unittest.cc ('k') | net/cert/x509_util_ios.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 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 #ifndef NET_CERT_X509_UTIL_IOS_H_
6 #define NET_CERT_X509_UTIL_IOS_H_
7
8 #include <Security/Security.h>
9
10 #include "base/mac/scoped_cftyperef.h"
11 #include "net/base/net_export.h"
12
13 namespace net {
14
15 class X509Certificate;
16
17 namespace x509_util {
18
19 // Returns a SecCertificate representing |cert|, or NULL on failure.
20 NET_EXPORT base::ScopedCFTypeRef<SecCertificateRef>
21 CreateSecCertificateFromX509Certificate(const X509Certificate* cert);
22
23 } // namespace x509_util
24
25 } // namespace net
26
27 #endif // NET_CERT_X509_UTIL_IOS_H_
OLDNEW
« no previous file with comments | « net/cert/x509_certificate_unittest.cc ('k') | net/cert/x509_util_ios.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698