/security/manager/ssl/public/nsIRecentBadCertsService.idl

http://github.com/zpao/v8monkey · IDL · 79 lines · 13 code · 6 blank · 60 comment · 0 complexity · 564ceabedd8a4b27aea4281db7c31ab3 MD5 · raw file

  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. * Red Hat, Inc.
  20. * Portions created by the Initial Developer are Copyright (C) 2006
  21. * the Initial Developer. All Rights Reserved.
  22. *
  23. * Contributor(s):
  24. * Kai Engert <kengert@redhat.com>
  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. interface nsIArray;
  41. interface nsIX509Cert;
  42. interface nsISSLStatus;
  43. %{C++
  44. #define NS_RECENTBADCERTS_CONTRACTID "@mozilla.org/security/recentbadcerts;1"
  45. %}
  46. /**
  47. * This represents a global list of recently seen bad ssl status
  48. * including the bad cert.
  49. * The implementation will decide how many entries it will hold,
  50. * the number is expected to be small.
  51. */
  52. [scriptable, uuid(a5ae8b05-a76e-408f-b0ba-02a831265749)]
  53. interface nsIRecentBadCertsService : nsISupports {
  54. /**
  55. * Retrieve the recently seen bad ssl status for the given hostname:port.
  56. * If no SSL cert was recently seen for the given hostname:port, return null.
  57. * If a good cert was seen for the given hostname:port, return null.
  58. *
  59. * @param aHostNameWithPort The host:port whose entry should be tested
  60. * @return null or a recently seen bad ssl status with cert
  61. */
  62. nsISSLStatus getRecentBadCert(in AString aHostNameWithPort);
  63. /**
  64. * A bad certificate that should be remembered by the service.
  65. * Will be added as the most recently seen cert.
  66. * The service may forget older entries to make room for the new one.
  67. *
  68. * @param aHostNameWithPort The host:port whose entry should be tested
  69. * @param aCert The bad ssl status with certificate
  70. */
  71. void addBadCert(in AString aHostNameWithPort,
  72. in nsISSLStatus aStatus);
  73. };