nsIX509CertValidity.idl (728B)
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 7 #include "nsISupports.idl" 8 9 /** 10 * Information on the validity period of a X.509 certificate. 11 */ 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. 17 */ 18 readonly attribute PRTime notBefore; 19 20 /** 21 * The latest point in time where 22 * a certificate is valid. 23 */ 24 readonly attribute PRTime notAfter; 25 };