diff -r 000000000000 -r 6474c204b198 security/manager/ssl/src/nsSDR.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/security/manager/ssl/src/nsSDR.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,56 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef _NSSDR_H_ +#define _NSSDR_H_ + +#include "nsISecretDecoderRing.h" + +/** + * NS_SDR_CONTRACTID - contract id for SDR services. + * Implements nsISecretDecoderRing. + * Should eventually implement an interface to set window + * context and other information. (nsISecretDecoderRingConfig) + * + * NOTE: This definition should move to base code. It + * is conditionally defined here until it is moved. + * Delete this after defining in the new location. + */ +#ifndef NS_SDR_CONTRACTID +#define NS_SDR_CONTRACTID "@mozilla.org/security/sdr;1" +#endif + +// =============================================== +// nsSecretDecoderRing - implementation of nsISecretDecoderRing +// =============================================== + +#define NS_SDR_CID \ + { 0x0c4f1ddc, 0x1dd2, 0x11b2, { 0x9d, 0x95, 0xf2, 0xfd, 0xf1, 0x13, 0x04, 0x4b } } + +class nsSecretDecoderRing +: public nsISecretDecoderRing, + public nsISecretDecoderRingConfig +{ +public: + NS_DECL_ISUPPORTS + NS_DECL_NSISECRETDECODERRING + NS_DECL_NSISECRETDECODERRINGCONFIG + + nsSecretDecoderRing(); + virtual ~nsSecretDecoderRing(); + +private: + + /** + * encode - encodes binary into BASE64 string. + * decode - decode BASE64 string into binary. + */ + nsresult encode(const unsigned char *data, int32_t dataLen, char **_retval); + nsresult decode(const char *data, unsigned char **result, int32_t * _retval); + +}; + +#endif /* _NSSDR_H_ */