SSLServerCertVerification.h 599 B

1234567891011121314151617181920
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2. *
  3. * This Source Code Form is subject to the terms of the Mozilla Public
  4. * License, v. 2.0. If a copy of the MPL was not distributed with this
  5. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6. #ifndef _SSLSERVERCERTVERIFICATION_H
  7. #define _SSLSERVERCERTVERIFICATION_H
  8. #include "seccomon.h"
  9. #include "prio.h"
  10. namespace mozilla { namespace psm {
  11. SECStatus AuthCertificateHook(void* arg, PRFileDesc* fd,
  12. PRBool checkSig, PRBool isServer);
  13. } } // namespace mozilla::psm
  14. #endif