mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
49 lines
1.7 KiB
C
49 lines
1.7 KiB
C
|
// Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#ifndef NET_CERT_X509_UTIL_IOS_AND_MAC_H_
|
||
|
#define NET_CERT_X509_UTIL_IOS_AND_MAC_H_
|
||
|
|
||
|
#include <CoreFoundation/CFArray.h>
|
||
|
#include <Security/Security.h>
|
||
|
|
||
|
#include "base/mac/scoped_cftyperef.h"
|
||
|
#include "net/base/net_export.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
class X509Certificate;
|
||
|
|
||
|
namespace x509_util {
|
||
|
|
||
|
// Returns a new CFMutableArrayRef containing this certificate and its
|
||
|
// intermediate certificates in the form expected by Security.framework
|
||
|
// and Keychain Services, or NULL on failure.
|
||
|
// The first item in the array will be this certificate, followed by its
|
||
|
// intermediates, if any.
|
||
|
NET_EXPORT base::ScopedCFTypeRef<CFMutableArrayRef>
|
||
|
CreateSecCertificateArrayForX509Certificate(X509Certificate* cert);
|
||
|
|
||
|
// Specify behavior if an intermediate certificate fails SecCertificate
|
||
|
// parsing. kFail means the function should return a failure result
|
||
|
// immediately. kIgnore means the invalid intermediate is not added to the
|
||
|
// output container.
|
||
|
enum class InvalidIntermediateBehavior { kFail, kIgnore };
|
||
|
|
||
|
// Returns a new CFMutableArrayRef containing this certificate and its
|
||
|
// intermediate certificates in the form expected by Security.framework
|
||
|
// and Keychain Services. Returns NULL if the certificate could not be
|
||
|
// converted. |invalid_intermediate_behavior| specifies behavior if
|
||
|
// intermediates of |cert| could not be converted.
|
||
|
NET_EXPORT base::ScopedCFTypeRef<CFMutableArrayRef>
|
||
|
CreateSecCertificateArrayForX509Certificate(
|
||
|
X509Certificate* cert,
|
||
|
InvalidIntermediateBehavior invalid_intermediate_behavior);
|
||
|
|
||
|
} // namespace x509_util
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_CERT_X509_UTIL_IOS_AND_MAC_H_
|