Bumping manifests a=b2g-bump
[gecko.git] / xpcom / io / Base64.h
blobc9828b9859338a4a27df19bd71ea30b5ec79b65b
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_Base64_h__
8 #define mozilla_Base64_h__
10 #include "nsString.h"
12 class nsIInputStream;
14 namespace mozilla {
16 nsresult
17 Base64EncodeInputStream(nsIInputStream* aInputStream,
18 nsACString& aDest,
19 uint32_t aCount,
20 uint32_t aOffset = 0);
21 nsresult
22 Base64EncodeInputStream(nsIInputStream* aInputStream,
23 nsAString& aDest,
24 uint32_t aCount,
25 uint32_t aOffset = 0);
27 nsresult
28 Base64Encode(const nsACString& aString, nsACString& aBinary);
29 nsresult
30 Base64Encode(const nsAString& aString, nsAString& aBinaryData);
32 nsresult
33 Base64Decode(const nsACString& aBinaryData, nsACString& aString);
34 nsresult
35 Base64Decode(const nsAString& aBinaryData, nsAString& aString);
37 } // namespace mozilla
39 #endif