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"
10 * Information on the validity period of a X.509 certificate.
12 [scriptable
, uuid(e701dfd8
-1dd1
-11b2
-a172
-ffa6cc6156ad
)]
13 interface nsIX509CertValidity
: nsISupports
{
15 * The earliest point in time where
16 * a certificate is valid.
18 readonly attribute PRTime notBefore
;
21 * The latest point in time where
22 * a certificate is valid.
24 readonly attribute PRTime notAfter
;