/security/manager/ssl/src/nsCMS.h

http://github.com/zpao/v8monkey · C Header · 139 lines · 77 code · 19 blank · 43 comment · 0 complexity · 98bd142c0ae2bd6341a1fe68ff0a9237 MD5 · raw file

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4. *
  5. * The contents of this file are subject to the Mozilla Public License Version
  6. * 1.1 (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. * http://www.mozilla.org/MPL/
  9. *
  10. * Software distributed under the License is distributed on an "AS IS" basis,
  11. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. * for the specific language governing rights and limitations under the
  13. * License.
  14. *
  15. * The Original Code is Mozilla Communicator.
  16. *
  17. * The Initial Developer of the Original Code is
  18. * Netscape Communications Corp..
  19. * Portions created by the Initial Developer are Copyright (C) 2001
  20. * the Initial Developer. All Rights Reserved.
  21. *
  22. * Contributor(s): David Drinan <ddrinan@netscape.com>
  23. * Kai Engert <kengert@redhat.com>
  24. *
  25. * Alternatively, the contents of this file may be used under the terms of
  26. * either the GNU General Public License Version 2 or later (the "GPL"), or
  27. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28. * in which case the provisions of the GPL or the LGPL are applicable instead
  29. * of those above. If you wish to allow use of your version of this file only
  30. * under the terms of either the GPL or the LGPL, and not to allow others to
  31. * use your version of this file under the terms of the MPL, indicate your
  32. * decision by deleting the provisions above and replace them with the notice
  33. * and other provisions required by the GPL or the LGPL. If you do not delete
  34. * the provisions above, a recipient may use your version of this file under
  35. * the terms of any one of the MPL, the GPL or the LGPL.
  36. *
  37. * ***** END LICENSE BLOCK ***** */
  38. #ifndef __NS_CMS_H__
  39. #define __NS_CMS_H__
  40. #include "nsISupports.h"
  41. #include "nsCOMPtr.h"
  42. #include "nsXPIDLString.h"
  43. #include "nsIInterfaceRequestor.h"
  44. #include "nsICMSMessage.h"
  45. #include "nsICMSMessage2.h"
  46. #include "nsIX509Cert3.h"
  47. #include "nsVerificationJob.h"
  48. #include "nsICMSEncoder.h"
  49. #include "nsICMSDecoder.h"
  50. #include "sechash.h"
  51. #include "cms.h"
  52. #include "nsNSSShutDown.h"
  53. #define NS_CMSMESSAGE_CLASSNAME "CMS Message Object"
  54. #define NS_CMSMESSAGE_CID \
  55. { 0xa4557478, 0xae16, 0x11d5, { 0xba,0x4b,0x00,0x10,0x83,0x03,0xb1,0x17 } }
  56. class nsCMSMessage : public nsICMSMessage,
  57. public nsICMSMessage2,
  58. public nsNSSShutDownObject
  59. {
  60. public:
  61. NS_DECL_ISUPPORTS
  62. NS_DECL_NSICMSMESSAGE
  63. NS_DECL_NSICMSMESSAGE2
  64. nsCMSMessage();
  65. nsCMSMessage(NSSCMSMessage* aCMSMsg);
  66. virtual ~nsCMSMessage();
  67. void referenceContext(nsIInterfaceRequestor* aContext) {m_ctx = aContext;}
  68. NSSCMSMessage* getCMS() {return m_cmsMsg;}
  69. private:
  70. nsCOMPtr<nsIInterfaceRequestor> m_ctx;
  71. NSSCMSMessage * m_cmsMsg;
  72. NSSCMSSignerInfo* GetTopLevelSignerInfo();
  73. nsresult CommonVerifySignature(unsigned char* aDigestData, PRUint32 aDigestDataLen);
  74. nsresult CommonAsyncVerifySignature(nsISMimeVerificationListener *aListener,
  75. unsigned char* aDigestData, PRUint32 aDigestDataLen);
  76. virtual void virtualDestroyNSSReference();
  77. void destructorSafeDestroyNSSReference();
  78. friend class nsSMimeVerificationJob;
  79. };
  80. // ===============================================
  81. // nsCMSDecoder - implementation of nsICMSDecoder
  82. // ===============================================
  83. #define NS_CMSDECODER_CLASSNAME "CMS Decoder Object"
  84. #define NS_CMSDECODER_CID \
  85. { 0x9dcef3a4, 0xa3bc, 0x11d5, { 0xba, 0x47, 0x00, 0x10, 0x83, 0x03, 0xb1, 0x17 } }
  86. class nsCMSDecoder : public nsICMSDecoder,
  87. public nsNSSShutDownObject
  88. {
  89. public:
  90. NS_DECL_ISUPPORTS
  91. NS_DECL_NSICMSDECODER
  92. nsCMSDecoder();
  93. virtual ~nsCMSDecoder();
  94. private:
  95. nsCOMPtr<nsIInterfaceRequestor> m_ctx;
  96. NSSCMSDecoderContext *m_dcx;
  97. virtual void virtualDestroyNSSReference();
  98. void destructorSafeDestroyNSSReference();
  99. };
  100. // ===============================================
  101. // nsCMSEncoder - implementation of nsICMSEncoder
  102. // ===============================================
  103. #define NS_CMSENCODER_CLASSNAME "CMS Decoder Object"
  104. #define NS_CMSENCODER_CID \
  105. { 0xa15789aa, 0x8903, 0x462b, { 0x81, 0xe9, 0x4a, 0xa2, 0xcf, 0xf4, 0xd5, 0xcb } }
  106. class nsCMSEncoder : public nsICMSEncoder,
  107. public nsNSSShutDownObject
  108. {
  109. public:
  110. NS_DECL_ISUPPORTS
  111. NS_DECL_NSICMSENCODER
  112. nsCMSEncoder();
  113. virtual ~nsCMSEncoder();
  114. private:
  115. nsCOMPtr<nsIInterfaceRequestor> m_ctx;
  116. NSSCMSEncoderContext *m_ecx;
  117. virtual void virtualDestroyNSSReference();
  118. void destructorSafeDestroyNSSReference();
  119. };
  120. #endif