2015-05-03 19:32:37 +00: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: */
|
2014-05-15 10:20:00 +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_CryptoBuffer_h
|
|
|
|
#define mozilla_dom_CryptoBuffer_h
|
|
|
|
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "seccomon.h"
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class ArrayBufferViewOrArrayBuffer;
|
|
|
|
class OwningArrayBufferViewOrArrayBuffer;
|
|
|
|
|
|
|
|
class CryptoBuffer : public FallibleTArray<uint8_t>
|
|
|
|
{
|
|
|
|
public:
|
2014-07-19 13:24:00 +00:00
|
|
|
uint8_t* Assign(const CryptoBuffer& aData);
|
2014-05-15 10:20:00 +00:00
|
|
|
uint8_t* Assign(const uint8_t* aData, uint32_t aLength);
|
|
|
|
uint8_t* Assign(const SECItem* aItem);
|
|
|
|
uint8_t* Assign(const ArrayBuffer& aData);
|
|
|
|
uint8_t* Assign(const ArrayBufferView& aData);
|
|
|
|
uint8_t* Assign(const ArrayBufferViewOrArrayBuffer& aData);
|
|
|
|
uint8_t* Assign(const OwningArrayBufferViewOrArrayBuffer& aData);
|
|
|
|
|
2014-05-26 10:05:00 +00:00
|
|
|
template<typename T,
|
Bug 999651, bug 995679, bug 1009952, bug 1011007, bug 991981. r=sfink, r=shu, r=jandem, r=jdm, r=luke, r=bbouvier, r=nmatsakis, r=bz, r=ehsan, r=jgilbert, r=smaug, r=sicking, r=terrence, r=bholley, r=bent, r=efaust, r=jorendorff
2014-05-27 21:32:41 +00:00
|
|
|
JSObject* UnwrapArray(JSObject*),
|
2015-11-25 18:04:50 +00:00
|
|
|
void GetLengthAndDataAndSharedness(JSObject*, uint32_t*, bool*, T**)>
|
|
|
|
uint8_t* Assign(const TypedArray_base<T, UnwrapArray,
|
|
|
|
GetLengthAndDataAndSharedness>& aArray)
|
2014-05-26 10:05:00 +00:00
|
|
|
{
|
Bug 999651, bug 995679, bug 1009952, bug 1011007, bug 991981. r=sfink, r=shu, r=jandem, r=jdm, r=luke, r=bbouvier, r=nmatsakis, r=bz, r=ehsan, r=jgilbert, r=smaug, r=sicking, r=terrence, r=bholley, r=bent, r=efaust, r=jorendorff
2014-05-27 21:32:41 +00:00
|
|
|
aArray.ComputeLengthAndData();
|
|
|
|
return Assign(aArray.Data(), aArray.Length());
|
2014-05-26 10:05:00 +00:00
|
|
|
}
|
|
|
|
|
2014-07-19 13:25:00 +00:00
|
|
|
nsresult FromJwkBase64(const nsString& aBase64);
|
|
|
|
nsresult ToJwkBase64(nsString& aBase64);
|
2014-07-20 04:38:44 +00:00
|
|
|
bool ToSECItem(PLArenaPool* aArena, SECItem* aItem) const;
|
2014-09-27 18:22:57 +00:00
|
|
|
JSObject* ToUint8Array(JSContext* aCx) const;
|
2014-05-15 10:20:00 +00:00
|
|
|
|
|
|
|
bool GetBigIntValue(unsigned long& aRetVal);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_CryptoBuffer_h
|