2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-02-17 08:43:16 +04: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
|
|
|
|
|
2014-05-15 14:20:00 +04:00
|
|
|
#include "mozilla/dom/SubtleCrypto.h"
|
2015-01-09 21:55:44 +03:00
|
|
|
#include "nsIGlobalObject.h"
|
2013-08-23 09:17:11 +04:00
|
|
|
|
2013-08-01 10:57:25 +04:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
2013-02-17 08:43:16 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-08-15 22:17:48 +04:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2013-02-17 08:43:16 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2018-02-08 15:22:20 +03:00
|
|
|
class Crypto final : public nsISupports, public nsWrapperCache {
|
2014-06-23 23:56:07 +04:00
|
|
|
protected:
|
|
|
|
virtual ~Crypto();
|
|
|
|
|
2013-02-17 08:43:16 +04:00
|
|
|
public:
|
2018-02-08 15:22:20 +03:00
|
|
|
explicit Crypto(nsIGlobalObject* aParent);
|
2013-02-28 00:31:19 +04:00
|
|
|
|
2013-08-01 10:57:25 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Crypto)
|
|
|
|
|
2013-08-05 21:40:01 +04:00
|
|
|
void GetRandomValues(JSContext* aCx, const ArrayBufferView& aArray,
|
2015-01-09 21:55:44 +03:00
|
|
|
JS::MutableHandle<JSObject*> aRetval, ErrorResult& aRv);
|
2013-08-01 10:57:25 +04:00
|
|
|
|
2014-05-15 14:20:00 +04:00
|
|
|
SubtleCrypto* Subtle();
|
|
|
|
|
2013-08-01 10:57:25 +04:00
|
|
|
nsIGlobalObject* GetParentObject() const { return mParent; }
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2013-08-01 10:57:25 +04:00
|
|
|
|
|
|
|
private:
|
2015-01-09 21:55:44 +03:00
|
|
|
nsCOMPtr<nsIGlobalObject> mParent;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<SubtleCrypto> mSubtle;
|
2013-02-17 08:43:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_Crypto_h
|