Bug 1867190 - Add prefs for PHC probablities r=glandium
[gecko.git] / xpcom / io / nsScriptableBase64Encoder.cpp
blob8513a953805ed1bc3fd8bc55e068d86a9678597f
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 #include "nsScriptableBase64Encoder.h"
8 #include "mozilla/Base64.h"
10 using namespace mozilla;
12 NS_IMPL_ISUPPORTS(nsScriptableBase64Encoder, nsIScriptableBase64Encoder)
14 NS_IMETHODIMP
15 nsScriptableBase64Encoder::EncodeToCString(nsIInputStream* aStream,
16 uint32_t aLength,
17 nsACString& aResult) {
18 return Base64EncodeInputStream(aStream, aResult, aLength);
21 NS_IMETHODIMP
22 nsScriptableBase64Encoder::EncodeToString(nsIInputStream* aStream,
23 uint32_t aLength,
24 nsAString& aResult) {
25 return Base64EncodeInputStream(aStream, aResult, aLength);