51 lines
1.0 KiB
JavaScript
51 lines
1.0 KiB
JavaScript
|
/*
|
||
|
* Copyright (C) Sapphirecode - All Rights Reserved
|
||
|
* Created by Timo Hocker <timo@scode.ovh>, March 2020
|
||
|
*/
|
||
|
|
||
|
// @ts-nocheck
|
||
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* encode a string to base64
|
||
|
*
|
||
|
* @param {string} str string to encode
|
||
|
* @param {string} encoding encoding the string is in
|
||
|
* @returns {string} base64
|
||
|
*/
|
||
|
function to_b64 (str, encoding = 'utf-8') {
|
||
|
const buf = Buffer.from (str, encoding);
|
||
|
return buf.toString ('base64');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* encode a string to utf-8
|
||
|
*
|
||
|
* @param {string} str string to encode
|
||
|
* @param {string} encoding encoding the string is in
|
||
|
* @returns {string} utf-8
|
||
|
*/
|
||
|
function to_utf8 (str, encoding) {
|
||
|
const buf = Buffer.from (str, encoding);
|
||
|
return buf.toString ('utf-8');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* encode a string to hex
|
||
|
*
|
||
|
* @param {string} str string to encode
|
||
|
* @param {string} encoding encoding the string is in
|
||
|
* @returns {string} hex
|
||
|
*/
|
||
|
function to_hex (str, encoding = 'utf-8') {
|
||
|
const buf = Buffer.from (str, encoding);
|
||
|
return buf.toString ('hex');
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
to_b64,
|
||
|
to_hex,
|
||
|
to_utf8
|
||
|
};
|
||
|
|