Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gnablib

Package Overview
Dependencies
Maintainers
0
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gnablib

A lean, zero dependency library to provide a useful base for your project.

  • 0.7.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

gnablib

A lean, zero dependency library to provide a useful base for your project. Checksums, cryptography, codecs, date-times, error-checking-codes, logging, pseudorandom number generation. The tools you need for any project. Secure build pipeline, provenance signed and typed.

CI NPM ver install size deps LoC

Installation

This module is available through NPM. There are no install scripts, decrease your risk by explicitly preventing (--ignore-scripts)

(pnpm|npm) install gnablib --ignore-scripts

To verify provenance:

npm audit signatures

Details

Augmented Backus-Naur Form /rfc5234

Algorithms

  • Weighted Random Sampling
  • Next power of 2 32bit
  • Bits set 32bit
  • Count leading zeros (CLZ) 32bit
  • Thomson NFA (1968) solver

Checksum/Hash

A checksum; can be used to prevent/identify accidental changes. A hash; maps some data to another, often used for hash tables, or to speed up comparison.

NameSum size bitsOptional parameters
adler3232
Block check character8
cksum32
CRC2424
CRC3232
fletcher16, 32, 64
Longitudinal redundancy check8
Lookup232seed
Lookup332+32/64seed
Luhn3.5
MD5Sum128
Murmur332seed
SHA1Sum160
Spooky v2128seed
xxHash32, 64seed

Command Line Interface (cli)

  • Argument and option parsing
  • Foreground, background color (8 color, 213 color, 16M colors)
  • Underline, bold, faint, italic, blink, invert, hide, strike-through, overline text styles
  • Terminal controls & style (cursor move, screen/line clear)

Codec

Crypto

Block

CBC or CTR are recommended by Niels Ferguson and Bruce Schneier. ECB should not be used.

Padding
Symmetric
NameBlock sizeKey sizeNonce sizeFeatures
Advanced Encryption Standard (AES)1616, 24, 320
Ascon-12881616AEAD
Ascon-128a161616AEAD
Ascon-80pq82016AEAD, Resistance to quantum adversary
Blowfish84-560
ChaCha206416, 3212
ChaCha20-Poly1305643212AEAD
Rabbit16160, 8
Salsa206416, 328
Salsa20-Poly1305643212AEAD
Twofish1616, 24, 320
XChaCha20643224
XChaCha20-Poly1305643224AEAD
XSalsa206416, 3224
XSalsa20-Poly1305643224AEAD
Secure Hash

Cryptography hash functions that have the properties:

  • Finding an input string that matches a hash value (pre-image) is hard
  • Finding a pair of messages that generate the same hash value (collision) is hard
NameDigest sizesOptional parameters
Ascon-Hash, Ascon-HashA256-
Blake256, 512salt
Blake2b8-512, 256, 384, 512key, salt, personalization
Blake2s8-256, 224, 256key, salt, personalization
Keccak8-512, 224, 256, 384, 512capacity
MD4†128†-
MD5†128†-
ParallelHash (128,256)8-512block size, customization
RipeMD†128†, 160†, 256, 320-
SHA-1†160†-
SHA-2224, 256, 384, 512, 512/224, 512/256-
SHA-3224, 256, 384, 512-
TupleHash (128, 256)8-512customization
Whirlpool512-

† No longer considered cryptographically safe

Key Derivation Function (KDF)

A cryptographic algorithm that derives one or more secret keys from a secret value. Can be used to stretch keys (make them longer), or obtain a key in a particular format (eg making a key a fixed length)

  • HKDF
  • PBKDF2 pbkdf2_hmac_sha1, pbkdf2_hmac_sha256, pbkdf2_hmac_sha512
Message Authentication Code (MAC)

Also known as an authentication tag, a short piece of information to authenticate a message. Protect integrity, and authenticity.

NameTag Size
CMAC16 (AES)
HMACDepends on hash (Blake, Blake2, cShake, Keccak, MD4, MD5, RipeMD, Sha1, Sha2, Sha3, Shake, Whirlpool)
HopMAC16 (Kangaroo Twelve)
KMAC16, 32 (Keccak)
Poly130516
EXtendable-Output Function (XOF)

A secure hash that can produce output of any desired length.

NameCapacitiesOptional parameters
Ascon-Xof, Ascon-XofA256digest size
cShake128, 256digest size, function name, customization
KangarooTwelve128digest size, customization
KmacXof128, 256digest size, key, customization
ParallelHashXof128, 256block size, digest size, customization
Shake128, 256digest size
TupleHashXof128, 256digest size, customization
TurboSHAKE128, 256digest size, customization

DateTime

  • Year, Month, Day
  • Hour, Minute, Second, Millisecond, Microsecond
  • DateTimeLocal, DateTimeUtc, DateOnly, TimeOnly
  • Duration, DurationExact
  • DateTime*.lt|lte|eq|gt|gte|neq - Compare two date-times
  • DateTime*.add|sub - Add or subtract Duration|DurationExact from a date-time
  • DateTime*.diff|diffExact - Get the difference between two dates in y/m/d/h/* or d/h/*

Error Correction Codes

Endian

Net

Primitive

  • Fixed TypedArray
  • Int64
  • Lazy
  • Readonly TypedArray
  • Scaling TypedArray
  • StringBuilder
  • UInt16, UInt32, UInt64, UInt128, UInt256, UInt512
  • U32MutArra, U64MutArray
  • UInt, UIntMut
  • WindowStr
Extensions:
  • Bit
  • Int
  • String
  • Uint8Array

PseudoRandom number generators (PRNG)

Good PRNGs

Use one of these if you can, alphabetically sorted. gjrand32b is only somewhat official and doesn't have a lot of testing.

NameYearVariantState (bytes)Range
GJRand2005~gjrand32b16U32
gjrand6432U64
Permuted Congruential Generator (PCG)2014pcg328U32
pcgG6416U64
Small Fast Counting (SFC)2010sfc168U16
sfc3216U32
sfc6432U64
SplitMix2014splitmix324U32
splitmix648U64
Tychei2011tychei16U32
Well equidistributed long-period linear (WELL)2006well51264U32
XoRoShiRo2018xoroshiro64*8U32
xoroshiro64**8U32
xoroshiro128+16U64
xoroshiro128++16U64
xoroshiro128**16U64
XorShift+2003xorShift128+16U64
XoShiRo2018xoshiro128+16U32
xoshiro128++16U32
xoshiro128**16U32
xoshiro256+32U64
xoshiro256++32U64
xoshiro256**32U64

‡: Uses U64 library to exceed JS 32bit integer constraint (may be slower)

U16 : [0 - 32767 | 0xFFFF]
U31 : [0 - 2147483647 | 0x7FFFFFFF]
U32 : [0 - 4294967295 | 0xFFFFFFFF]
U64 : [0 - 18446744073709551615 | 0xFFFFFFFFFFFFFFFF]

Poor PRNGs

Best not to use these, there are some dragons in these waters (so if you're choosing, be aware of the limitations). However, you might have a compatibility constraint (or love the name Mersenne Twister).

NameYearVariantState (bytes)Range
ARC4/RC4/Arcfour/Arc4random1997arc432U8
Mersenne Twister1998mt199372496U32
MulBerry322017mulberry324U32
XorShift2003xorShift12816U32
Bad PRNGs

If you're curious about the lineage, or need for compatibility with an old decision, but don't chose one of these. If you're already using one of these, consider migrating.

NameVariantState (bytes)Range
Lehmer/LCG/MCG 1988all4U31
Marsaglia-1[0 - 9]
Middle-Square-4n digits
MSVC (LGC)-4U16
RANDU (LCG)-4U31
XorShift 2003xorshift324U32
xorshift648U64

RegExp

  • RegExp escape string

RunTime

  • Configuration (including collecting from environment variables)
  • Structured logging
  • Normalize stack entries, and stack traces across engines, with colors

License

MPL-1.1

Keywords

FAQs

Package last updated on 19 Jan 2025

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc