2014-06-30 19:39:45 +04: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 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
|
|
|
|
|
|
|
#include "nsScriptableBase64Encoder.h"
|
|
|
|
#include "mozilla/Base64.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsScriptableBase64Encoder, nsIScriptableBase64Encoder)
|
2011-06-08 22:08:31 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-15 00:15:46 +04:00
|
|
|
nsScriptableBase64Encoder::EncodeToCString(nsIInputStream* aStream,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aLength,
|
2014-05-15 00:15:46 +04:00
|
|
|
nsACString& aResult) {
|
2015-02-26 21:13:59 +03:00
|
|
|
return Base64EncodeInputStream(aStream, aResult, aLength);
|
2011-06-08 22:08:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-15 00:15:46 +04:00
|
|
|
nsScriptableBase64Encoder::EncodeToString(nsIInputStream* aStream,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t aLength,
|
2014-05-15 00:15:46 +04:00
|
|
|
nsAString& aResult) {
|
2015-02-26 21:13:59 +03:00
|
|
|
return Base64EncodeInputStream(aStream, aResult, aLength);
|
2011-06-08 22:08:31 +04:00
|
|
|
}
|