SkillAgentSearch skills...

Hex64

Base64 encode and decode UTF-8 strings for URLs (module and binary tool)

Install / Use

/learn @tjmehta/Hex64
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Base64 encode / decode Hex strings for URLs (module and binary tool)

install:

npm install -g hex64

commandline:

$ hex64 b64 cccccc
zMzM

$ hex64 hex zMzM
cccccc

$ hex64 cccccc
b64: zMzM

$ hex64 zMzM
hex: cccccc

$ hex64 b64 zzz
[Error: Invalid hex string]

node:

var hex64 = require('hex64');

hex64.encode('cccccc');   // zMzM
hex64.toBase64('cccccc'); // zMzM

hex64.decode('zMzM');     // cccccc
hex64.toHex('zMzM');      // cccccc

// intelligent: if hex -> b64 else b64 -> hex
hex64.transform('cccccc') // zMzM
hex64.transform('zMzM')   // cccccc

license:

MIT

Related Skills

View on GitHub
GitHub Stars7
CategoryDevelopment
Updated1y ago
Forks0

Languages

JavaScript

Security Score

55/100

Audited on Dec 10, 2024

No findings