зеркало из https://github.com/mozilla/gecko-dev.git
36 строки
1.0 KiB
C++
36 строки
1.0 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef nsNSSCertValidity_h
|
|
#define nsNSSCertValidity_h
|
|
|
|
#include "DateTimeFormat.h"
|
|
#include "ScopedNSSTypes.h"
|
|
#include "nsIX509CertValidity.h"
|
|
|
|
class nsX509CertValidity : public nsIX509CertValidity {
|
|
public:
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSIX509CERTVALIDITY
|
|
|
|
explicit nsX509CertValidity(const mozilla::UniqueCERTCertificate& cert);
|
|
|
|
protected:
|
|
virtual ~nsX509CertValidity() {}
|
|
|
|
private:
|
|
nsresult FormatTime(const PRTime& aTime, PRTimeParamFn aParamFn,
|
|
const mozilla::nsTimeFormatSelector aTimeFormatSelector,
|
|
nsAString& aFormattedTimeDate);
|
|
|
|
PRTime mNotBefore;
|
|
PRTime mNotAfter;
|
|
bool mTimesInitialized;
|
|
|
|
nsX509CertValidity(const nsX509CertValidity& x) = delete;
|
|
nsX509CertValidity& operator=(const nsX509CertValidity& x) = delete;
|
|
};
|
|
|
|
#endif // nsNSSCertValidity_h
|