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 #include "chrome/browser/ssl/ssl_add_certificate.h"
7 #include "chrome/browser/ssl/ssl_add_cert_handler.h"
8 #include "net/cert/x509_certificate.h"
12 void SSLAddCertificate(
13 net::URLRequest
* request
,
14 net::CertificateMimeType cert_type
,
15 const void* cert_data
,
17 int render_process_id
,
19 // Chromium only supports X.509 User certificates on non-Android
20 // platforms. Note that this method should not be called for other
21 // certificate mime types.
22 if (cert_type
!= net::CERTIFICATE_MIME_TYPE_X509_USER_CERT
)
25 scoped_refptr
<net::X509Certificate
> cert
;
26 if (cert_data
!= NULL
) {
27 cert
= net::X509Certificate::CreateFromBytes(
28 reinterpret_cast<const char*>(cert_data
), cert_size
);
30 // NOTE: Passing a NULL cert pointer if |cert_data| was NULL is
33 // The handler will run the UI and delete itself when it's finished.
34 new SSLAddCertHandler(request
, cert
.get(), render_process_id
, render_view_id
);