2014-06-30 08:39:45 -07: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: */
|
2012-05-21 04:12:37 -07: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 11:08:31 -07:00
|
|
|
|
|
|
|
#ifndef mozilla_Base64_h__
|
|
|
|
#define mozilla_Base64_h__
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
class nsIInputStream;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
nsresult
|
2014-05-14 13:15:46 -07:00
|
|
|
Base64EncodeInputStream(nsIInputStream* aInputStream,
|
|
|
|
nsACString& aDest,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aCount,
|
|
|
|
uint32_t aOffset = 0);
|
2011-06-08 11:08:31 -07:00
|
|
|
nsresult
|
2014-05-14 13:15:46 -07:00
|
|
|
Base64EncodeInputStream(nsIInputStream* aInputStream,
|
|
|
|
nsAString& aDest,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aCount,
|
|
|
|
uint32_t aOffset = 0);
|
2011-06-08 11:08:31 -07:00
|
|
|
|
2011-12-28 00:13:38 -08:00
|
|
|
nsresult
|
2014-05-14 13:15:46 -07:00
|
|
|
Base64Encode(const nsACString& aString, nsACString& aBinary);
|
2011-12-28 00:13:38 -08:00
|
|
|
nsresult
|
2014-05-14 13:15:46 -07:00
|
|
|
Base64Encode(const nsAString& aString, nsAString& aBinaryData);
|
2011-12-28 00:13:38 -08:00
|
|
|
|
|
|
|
nsresult
|
2014-05-14 13:15:46 -07:00
|
|
|
Base64Decode(const nsACString& aBinaryData, nsACString& aString);
|
2011-12-28 00:13:38 -08:00
|
|
|
nsresult
|
2014-05-14 13:15:46 -07:00
|
|
|
Base64Decode(const nsAString& aBinaryData, nsAString& aString);
|
2011-12-28 00:13:38 -08:00
|
|
|
|
2011-06-08 11:08:31 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|