
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
bazinga64
Advanced tools
This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com.
You can find the published source code at github.com/wireapp.
For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.
yarn add bazinga64
npm -i bazinga64
const bazinga64 = require('bazinga64');
yarn
yarn dist
// Encoding
const encoded = bazinga64.Encoder.toBase64('Hello');
const base64 = encoded.asString;
console.log(base64); // "SGVsbG8="
// Decoding
const decoded = bazinga64.Decoder.fromBase64('SGVsbG8=');
const text = decoded.asString;
console.log(text); // "Hello"
import {Decoder} from 'bazinga64';
const typedArray: Uint8Array = Decoder.fromBase64('SGVsbG8=').asBytes;
DecoderfromBase64EncodertoBase64toBase64UrlConverterarrayBufferViewToStringarrayBufferViewToStringUTF8arrayBufferViewToBaselineStringjsonToArrayBufferViewnumberArrayToArrayBufferViewstringToArrayBufferViewUTF16stringToArrayBufferViewUTF8hexStringToArrayBufferViewtoArrayBufferViewtoStringFAQs
Base64 encoding and decoding with ASCII string representation.
The npm package bazinga64 receives a total of 1,746 weekly downloads. As such, bazinga64 popularity was classified as popular.
We found that bazinga64 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.