139db22be5
First, the look for trusted root certificates in standard locations on the file system (/etc/pki/tls/certs/ca-bundle.crt followed by /etc/ssl/certs), and only if these do not exist will we fall back on the compiled-in trusted root certificates. This behavior can be overridden with the new flags --root-certs-file and --root-certs-cache. R=asiva@google.com Review URL: https://codereview.chromium.org/2346683003 .
25 lines
777 B
C++
25 lines
777 B
C++
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED)
|
|
|
|
#include "platform/globals.h"
|
|
#if defined(TARGET_OS_MACOS) || \
|
|
defined(TARGET_OS_ANDROID) || \
|
|
defined(DART_IO_ROOT_CERTS_DISABLED)
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
const unsigned char* root_certificates_pem = NULL;
|
|
unsigned int root_certificates_pem_length = 0;
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // defined(TARGET_OS_MACOS) || defined(TARGET_OS_ANDROID) || ...
|
|
|
|
#endif // !defined(DART_IO_DISABLED) &&
|
|
// !defined(DART_IO_SECURE_SOCKET_DISABLED)
|