atom_constants.cc 1.1 KB

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2015 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #include "atom/common/atom_constants.h"
  5. namespace atom {
  6. const char kCORSHeader[] = "Access-Control-Allow-Origin: *";
  7. const char kSHA1Certificate[] = "SHA-1 Certificate";
  8. const char kSHA1MajorDescription[] =
  9. "The certificate for this site expires in 2017 or later, "
  10. "and the certificate chain contains a certificate signed using SHA-1.";
  11. const char kSHA1MinorDescription[] =
  12. "The certificate for this site expires in 2016, "
  13. "and the certificate chain contains a certificate signed using SHA-1.";
  14. const char kCertificateError[] = "Certificate Error";
  15. const char kValidCertificate[] = "Valid Certificate";
  16. const char kValidCertificateDescription[] =
  17. "The connection to this site is using a valid, trusted server certificate.";
  18. const char kSecureProtocol[] = "Secure TLS connection";
  19. const char kSecureProtocolDescription[] =
  20. "The connection to this site is using a strong protocol version "
  21. "and cipher suite.";
  22. } // namespace atom