Bug 1935611 - Fix libyuv/libpng link failed for loongarch64. r=glandium,tnikkel,ng
[gecko.git] / security / manager / ssl / nsIX509CertValidity.idl
blobb27e1b38471e8ce24bad2e2520479da8526296ee
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 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/. */
7 #include "nsISupports.idl"
9 /**
10 * Information on the validity period of a X.509 certificate.
12 [scriptable, uuid(e701dfd8-1dd1-11b2-a172-ffa6cc6156ad)]
13 interface nsIX509CertValidity : nsISupports {
14 /**
15 * The earliest point in time where
16 * a certificate is valid.
18 readonly attribute PRTime notBefore;
20 /**
21 * The latest point in time where
22 * a certificate is valid.
24 readonly attribute PRTime notAfter;