2011-06-08 22:08:31 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +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/. */
|
2011-06-08 22:08:31 +04:00
|
|
|
|
|
|
|
#ifndef mozilla_Base64_h__
|
|
|
|
#define mozilla_Base64_h__
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
class nsIInputStream;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
nsresult
|
2014-05-05 21:30:43 +04:00
|
|
|
Base64EncodeInputStream(nsIInputStream *aInputStream,
|
2011-06-08 22:08:31 +04:00
|
|
|
nsACString &aDest,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aCount,
|
|
|
|
uint32_t aOffset = 0);
|
2011-06-08 22:08:31 +04:00
|
|
|
nsresult
|
2014-05-05 21:30:43 +04:00
|
|
|
Base64EncodeInputStream(nsIInputStream *aInputStream,
|
2011-06-08 22:08:31 +04:00
|
|
|
nsAString &aDest,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aCount,
|
|
|
|
uint32_t aOffset = 0);
|
2011-06-08 22:08:31 +04:00
|
|
|
|
2011-12-28 12:13:38 +04:00
|
|
|
nsresult
|
|
|
|
Base64Encode(const nsACString &aString, nsACString &aBinary);
|
|
|
|
nsresult
|
|
|
|
Base64Encode(const nsAString &aString, nsAString &aBinaryData);
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
Base64Decode(const nsACString &aBinaryData, nsACString &aString);
|
|
|
|
nsresult
|
|
|
|
Base64Decode(const nsAString &aBinaryData, nsAString &aString);
|
|
|
|
|
2011-06-08 22:08:31 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|