Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
michael@0 | 2 | * |
michael@0 | 3 | * This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef _nsCryptoHash_h_ |
michael@0 | 8 | #define _nsCryptoHash_h_ |
michael@0 | 9 | |
michael@0 | 10 | #include "nsICryptoHash.h" |
michael@0 | 11 | #include "nsICryptoHMAC.h" |
michael@0 | 12 | #include "nsNSSShutDown.h" |
michael@0 | 13 | #include "hasht.h" |
michael@0 | 14 | #include "secmodt.h" |
michael@0 | 15 | |
michael@0 | 16 | class nsIInputStream; |
michael@0 | 17 | |
michael@0 | 18 | #define NS_CRYPTO_HASH_CID {0x36a1d3b3, 0xd886, 0x4317, {0x96, 0xff, 0x87, 0xb0, 0x00, 0x5c, 0xfe, 0xf7}} |
michael@0 | 19 | #define NS_CRYPTO_HMAC_CID {0xa496d0a2, 0xdff7, 0x4e23, {0xbd, 0x65, 0x1c, 0xa7, 0x42, 0xfa, 0x17, 0x8a}} |
michael@0 | 20 | |
michael@0 | 21 | class nsCryptoHash : public nsICryptoHash, public nsNSSShutDownObject |
michael@0 | 22 | { |
michael@0 | 23 | public: |
michael@0 | 24 | NS_DECL_ISUPPORTS |
michael@0 | 25 | NS_DECL_NSICRYPTOHASH |
michael@0 | 26 | |
michael@0 | 27 | nsCryptoHash(); |
michael@0 | 28 | |
michael@0 | 29 | private: |
michael@0 | 30 | ~nsCryptoHash(); |
michael@0 | 31 | |
michael@0 | 32 | HASHContext* mHashContext; |
michael@0 | 33 | bool mInitialized; |
michael@0 | 34 | |
michael@0 | 35 | virtual void virtualDestroyNSSReference(); |
michael@0 | 36 | void destructorSafeDestroyNSSReference(); |
michael@0 | 37 | }; |
michael@0 | 38 | |
michael@0 | 39 | class nsCryptoHMAC : public nsICryptoHMAC, public nsNSSShutDownObject |
michael@0 | 40 | { |
michael@0 | 41 | public: |
michael@0 | 42 | NS_DECL_ISUPPORTS |
michael@0 | 43 | NS_DECL_NSICRYPTOHMAC |
michael@0 | 44 | |
michael@0 | 45 | nsCryptoHMAC(); |
michael@0 | 46 | |
michael@0 | 47 | private: |
michael@0 | 48 | ~nsCryptoHMAC(); |
michael@0 | 49 | PK11Context* mHMACContext; |
michael@0 | 50 | |
michael@0 | 51 | virtual void virtualDestroyNSSReference(); |
michael@0 | 52 | void destructorSafeDestroyNSSReference(); |
michael@0 | 53 | }; |
michael@0 | 54 | |
michael@0 | 55 | #endif // _nsCryptoHash_h_ |
michael@0 | 56 |