PublicSSL.h 599 B

12345678910111213141516171819202122232425
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef mozilla_SSL_h
  6. #define mozilla_SSL_h
  7. namespace mozilla {
  8. void ClearPrivateSSLState();
  9. namespace psm {
  10. void InitializeSSLServerCertVerificationThreads();
  11. void StopSSLServerCertVerificationThreads();
  12. void DisableMD5();
  13. nsresult InitializeCipherSuite();
  14. } //namespace psm
  15. } // namespace mozilla
  16. #endif