
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@kalin-setterberg/encoding
Advanced tools
Helpers for decoding or encoding BASE64 and UTF-8 in any execution context.
JS functions for working with encodings. Contains typings for TypeScript.
All data are processed using Uint8Array
s.
In a node-like context you may encode a Buffer
but the return value will be a plain Uint8Array
.
import { b64enc } from "@kalin-setterberg/encoding";
const useBase64url = true;
const data = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
/** @type {Uint8Array} */
const result = b64enc(data, useBase64url);
Prefers the use of a globally defined TextEncoder
following the WHATWG standard.
If no TextEncoder
is defined but there is a global Buffer
, as in node, a Buffer
will be used for encoding.
Falls back upon a custom implementation supporting up to 16 bit code points.
import { utf8enc } from "@kalin-setterberg/encoding";
const data = "hello world";
/** @type {Uint8Array} */
const result = utf8enc(data);
Prefers the use of a globally defined TextDecoder
following the WHATWG standard.
If no TextDecoder
is defined but there is a global Buffer
, as in node, Buffer.toString()
will be used for decoding when the parameter is an instance of Buffer
.
Falls back upon a custom implementation supporting up to 16 bit code points.
import { utf8dec } from "@kalin-setterberg/encoding";
const data = new Uint8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]);
/** @type {string} */
const result = utf8dec(data);
FAQs
Helpers for decoding or encoding BASE64 and UTF-8 in any execution context.
The npm package @kalin-setterberg/encoding receives a total of 4 weekly downloads. As such, @kalin-setterberg/encoding popularity was classified as not popular.
We found that @kalin-setterberg/encoding demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.