2013-02-17 04:43:16 +00:00
|
|
|
/* 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 mozilla_dom_Crypto_h
|
|
|
|
#define mozilla_dom_Crypto_h
|
|
|
|
|
|
|
|
#ifdef MOZ_DISABLE_CRYPTOLEGACY
|
|
|
|
#include "nsIDOMCrypto.h"
|
|
|
|
#else
|
|
|
|
#include "nsIDOMCryptoLegacy.h"
|
2014-01-27 16:27:04 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class CRMFObject;
|
|
|
|
}
|
|
|
|
}
|
2013-02-17 04:43:16 +00:00
|
|
|
#endif
|
|
|
|
|
2013-08-23 05:17:11 +00:00
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
|
2013-08-01 06:57:25 +00:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
2013-02-17 04:43:16 +00:00
|
|
|
#define NS_DOMCRYPTO_CID \
|
|
|
|
{0x929d9320, 0x251e, 0x11d4, { 0x8a, 0x7c, 0x00, 0x60, 0x08, 0xc8, 0x44, 0xc3} }
|
|
|
|
|
|
|
|
namespace mozilla {
|
2013-08-15 18:17:48 +00:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2013-02-17 04:43:16 +00:00
|
|
|
namespace dom {
|
|
|
|
|
2013-08-01 06:57:25 +00:00
|
|
|
class Crypto : public nsIDOMCrypto,
|
|
|
|
public nsWrapperCache
|
2013-02-17 04:43:16 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Crypto();
|
|
|
|
virtual ~Crypto();
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMCRYPTO
|
2013-02-27 20:31:19 +00:00
|
|
|
|
2013-08-01 06:57:25 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Crypto)
|
|
|
|
|
|
|
|
JSObject *
|
2013-08-05 17:40:01 +00:00
|
|
|
GetRandomValues(JSContext* aCx, const ArrayBufferView& aArray,
|
|
|
|
ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
|
|
|
#ifndef MOZ_DISABLE_CRYPTOLEGACY
|
2013-09-17 16:54:34 +00:00
|
|
|
virtual bool EnableSmartCardEvents();
|
|
|
|
virtual void SetEnableSmartCardEvents(bool aEnable, ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
2013-09-17 16:54:34 +00:00
|
|
|
virtual void GetVersion(nsString& aVersion);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
2014-01-27 16:27:06 +00:00
|
|
|
virtual mozilla::dom::CRMFObject*
|
2013-08-01 06:57:25 +00:00
|
|
|
GenerateCRMFRequest(JSContext* aContext,
|
|
|
|
const nsCString& aReqDN,
|
|
|
|
const nsCString& aRegToken,
|
|
|
|
const nsCString& aAuthenticator,
|
|
|
|
const nsCString& aEaCert,
|
|
|
|
const nsCString& aJsCallback,
|
|
|
|
const Sequence<JS::Value>& aArgs,
|
2013-09-17 16:54:34 +00:00
|
|
|
ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
|
|
|
virtual void ImportUserCertificates(const nsAString& aNickname,
|
|
|
|
const nsAString& aCmmfResponse,
|
|
|
|
bool aDoForcedBackup,
|
|
|
|
nsAString& aReturn,
|
2013-09-17 16:54:34 +00:00
|
|
|
ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
|
|
|
virtual void PopChallengeResponse(const nsAString& aChallenge,
|
|
|
|
nsAString& aReturn,
|
2013-09-17 16:54:34 +00:00
|
|
|
ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
2013-09-17 16:54:34 +00:00
|
|
|
virtual void Random(int32_t aNumBytes, nsAString& aReturn, ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
|
|
|
virtual void SignText(JSContext* aContext,
|
|
|
|
const nsAString& aStringToSign,
|
|
|
|
const nsAString& aCaOption,
|
|
|
|
const Sequence<nsCString>& aArgs,
|
2013-09-17 16:54:34 +00:00
|
|
|
nsAString& aReturn);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
2013-09-17 16:54:34 +00:00
|
|
|
virtual void Logout(ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
2013-09-17 16:54:34 +00:00
|
|
|
virtual void DisableRightClick(ErrorResult& aRv);
|
2013-08-01 06:57:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// WebIDL
|
|
|
|
|
|
|
|
nsPIDOMWindow*
|
|
|
|
GetParentObject() const
|
|
|
|
{
|
|
|
|
return mWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual JSObject*
|
|
|
|
WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope) MOZ_OVERRIDE;
|
|
|
|
|
2013-02-27 20:31:19 +00:00
|
|
|
static uint8_t*
|
|
|
|
GetRandomValues(uint32_t aLength);
|
2013-08-01 06:57:25 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsPIDOMWindow> mWindow;
|
2013-02-17 04:43:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_Crypto_h
|