nsIX509CertValidity.idl 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2. *
  3. * ***** BEGIN LICENSE BLOCK *****
  4. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5. *
  6. * The contents of this file are subject to the Mozilla Public License Version
  7. * 1.1 (the "License"); you may not use this file except in compliance with
  8. * the License. You may obtain a copy of the License at
  9. * http://www.mozilla.org/MPL/
  10. *
  11. * Software distributed under the License is distributed on an "AS IS" basis,
  12. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13. * for the specific language governing rights and limitations under the
  14. * License.
  15. *
  16. * The Original Code is mozilla.org code.
  17. *
  18. * The Initial Developer of the Original Code is
  19. * Netscape Communications Corporation.
  20. * Portions created by the Initial Developer are Copyright (C) 1998
  21. * the Initial Developer. All Rights Reserved.
  22. *
  23. * Contributor(s):
  24. * Javier Delgadillo <[email protected]>
  25. *
  26. * Alternatively, the contents of this file may be used under the terms of
  27. * either the GNU General Public License Version 2 or later (the "GPL"), or
  28. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29. * in which case the provisions of the GPL or the LGPL are applicable instead
  30. * of those above. If you wish to allow use of your version of this file only
  31. * under the terms of either the GPL or the LGPL, and not to allow others to
  32. * use your version of this file under the terms of the MPL, indicate your
  33. * decision by deleting the provisions above and replace them with the notice
  34. * and other provisions required by the GPL or the LGPL. If you do not delete
  35. * the provisions above, a recipient may use your version of this file under
  36. * the terms of any one of the MPL, the GPL or the LGPL.
  37. *
  38. * ***** END LICENSE BLOCK ***** */
  39. #include "nsISupports.idl"
  40. /**
  41. * Information on the validity period of a X.509 certificate.
  42. *
  43. * @status FROZEN
  44. */
  45. [scriptable, uuid(e701dfd8-1dd1-11b2-a172-ffa6cc6156ad)]
  46. interface nsIX509CertValidity : nsISupports {
  47. /**
  48. * The earliest point in time where
  49. * a certificate is valid.
  50. */
  51. readonly attribute PRTime notBefore;
  52. /**
  53. * "notBefore" attribute formatted as a time string
  54. * according to the environment locale,
  55. * according to the environment time zone.
  56. */
  57. readonly attribute AString notBeforeLocalTime;
  58. /**
  59. * The day portion of "notBefore"
  60. * formatted as a time string
  61. * according to the environment locale,
  62. * according to the environment time zone.
  63. */
  64. readonly attribute AString notBeforeLocalDay;
  65. /**
  66. * "notBefore" attribute formatted as a string
  67. * according to the environment locale,
  68. * displayed as GMT / UTC.
  69. */
  70. readonly attribute AString notBeforeGMT;
  71. /**
  72. * The latest point in time where
  73. * a certificate is valid.
  74. */
  75. readonly attribute PRTime notAfter;
  76. /**
  77. * "notAfter" attribute formatted as a time string
  78. * according to the environment locale,
  79. * according to the environment time zone.
  80. */
  81. readonly attribute AString notAfterLocalTime;
  82. /**
  83. * The day portion of "notAfter"
  84. * formatted as a time string
  85. * according to the environment locale,
  86. * according to the environment time zone.
  87. */
  88. readonly attribute AString notAfterLocalDay;
  89. /**
  90. * "notAfter" attribute formatted as a time string
  91. * according to the environment locale,
  92. * displayed as GMT / UTC.
  93. */
  94. readonly attribute AString notAfterGMT;
  95. };