awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
kelektiv avatar

kelektiv/node.bcrypt.js

0
View on GitHub↗
7,801 Stars·551 Forks·C++·MIT·3 Aufrufe

Node.bcrypt.js

Dies ist eine bcrypt-Passwort-Hashing-Bibliothek und ein Kryptografie-Modul für Node.js. Sie bietet ein Toolset zur Generierung sicherer Salts, zur Berechnung kryptografisch starker Hashes und zur Verifizierung von Passwörtern, um Benutzeranmeldeinformationen vor unbefugtem Zugriff zu schützen.

Die Bibliothek implementiert adaptives Hashing und nutzt einen konfigurierbaren Kostenfaktor, um den Rechenaufwand zu erhöhen, der für Brute-Force-Angriffe auf Passwörter erforderlich ist. Sie enthält ein Passwort-Verifizierungstool, das den Vergleichsprozess vor Timing-Angriffen schützt.

Das Projekt deckt sicheres Passwort-Hashing und Salt-Generierung ab sowie Dienstprogramme für die Extraktion von Hash-Kosten und die Passwortverifizierung. Diese Funktionen unterstützen Workflows für die sichere Passwortspeicherung und Benutzerauthentifizierung.

Features

  • Password Hashing Utilities - Provides a complete bcrypt implementation for transforming passwords into secure, irreversible hashes for storage.
  • Adaptive - Implements an adaptive hashing algorithm with a configurable cost factor to scale security with hardware.
  • Node.js Native Addons - Binds a C++ implementation of the bcrypt algorithm to Node.js using native addons.
  • Adaptive Hashing Costs - Implements adjustable computational costs for hashes to increase resistance against brute-force attacks.
  • Brute Force Protections - Employs salt and adaptive cost factors to significantly slow down password cracking attempts.
  • Cryptographic Salt Generation - Generates high-entropy random salts to ensure unique hashes for identical passwords.
  • Node.js Cryptography Integrations - Integrates C++ cryptographic primitives into the Node.js environment for strong password hashing.
  • Password Verification - Provides utilities to securely compare plaintext passwords against stored hashes while resisting timing attacks.
  • Bcrypt Implementations - Implements the bcrypt algorithm for secure password hashing and verification in Node.js.
  • Thread Pool Offloading - Offloads CPU-intensive hashing operations to separate threads to prevent blocking the main event loop.
  • Timing Attack Prevention - Prevents information leakage from timing attacks by using constant-time comparison algorithms for password hashes.
  • User Authentication Workflows - Supports secure user login flows by verifying plaintext passwords against stored bcrypt hashes.
  • Cryptography and Security - Bcrypt implementation for Node.js.

Star-Verlauf

Star-Verlauf für kelektiv/node.bcrypt.jsStar-Verlauf für kelektiv/node.bcrypt.js

KI-Suche

Entdecke weitere awesome Repositories

Beschreibe in einfachen Worten, was du brauchst — die KI bewertet tausende kuratierte Open-Source-Projekte nach Relevanz.

Start searching with AI

Open-Source-Alternativen zu Node.bcrypt.js

Ähnliche Open-Source-Projekte, sortiert nach der Anzahl der gemeinsamen Funktionen mit Node.bcrypt.js.
  • ncb000gt/node.bcrypt.jsAvatar von ncb000gt

    ncb000gt/node.bcrypt.js

    7,800Auf GitHub ansehen↗

    This is a Node.js library for securely hashing and verifying passwords using the bcrypt adaptive hashing algorithm. It functions as a password security module that transforms plain-text credentials into protected hashes and generates cryptographically secure salts. The implementation allows for the adjustment of computational cost to resist brute-force attacks. It provides utilities for password hash verification and the extraction of hash metadata to determine the number of encryption rounds used. The project covers a range of security and access control capabilities, including credential s

    C++
    Auf GitHub ansehen↗7,800
  • dcodeio/bcrypt.jsAvatar von dcodeIO

    dcodeIO/bcrypt.js

    3,797Auf GitHub ansehen↗

    bcrypt.js is a portable JavaScript implementation of the bcrypt algorithm used for securely hashing and verifying user passwords. It functions as a credential security utility that protects stored passwords against brute-force attacks through the use of salts and configurable work factors. The library is designed as a pure JavaScript cryptographic module, allowing it to run in any JavaScript environment, including both server-side Node.js and client-side web browsers, without requiring native system binaries or C++ bindings. It is a zero-dependency standalone module to minimize security risks

    JavaScript
    Auf GitHub ansehen↗3,797
  • aarondl/authbossAvatar von aarondl

    aarondl/authboss

    4,189Auf GitHub ansehen↗

    Authboss is a modular HTTP authentication framework for managing user identity, session lifecycles, and password security. It provides a system of identity access middleware to control route access and synchronize user identity across requests via standard web protocols. The framework is distinguished by a pluggable architecture that allows for the registration of independent modules to extend identity logic. It utilizes a hook-based event system to execute custom business logic during authentication state changes and employs a selector-verifier token pattern to protect against timing attacks

    Go
    Auf GitHub ansehen↗4,189
  • nodejs/node-addon-apiAvatar von nodejs

    nodejs/node-addon-api

    2,400Auf GitHub ansehen↗

    This project provides a header-only C++ wrapper for the Node-API, serving as a framework for building high-performance native addons for Node.js. It acts as a bridge between C++ and JavaScript, offering an object-oriented interface that simplifies the creation of compiled extensions while managing the complexities of the language boundary. The library distinguishes itself by providing type-safe abstractions for data marshalling and memory management, ensuring that native and script-side objects are tracked and reclaimed correctly. It includes mechanisms for coordinating asynchronous tasks bet

    C++nodenodejs
    Auf GitHub ansehen↗2,400
Alle 30 Alternativen zu Node.bcrypt.js anzeigen→

Häufig gestellte Fragen

Was macht kelektiv/node.bcrypt.js?

Dies ist eine bcrypt-Passwort-Hashing-Bibliothek und ein Kryptografie-Modul für Node.js. Sie bietet ein Toolset zur Generierung sicherer Salts, zur Berechnung kryptografisch starker Hashes und zur Verifizierung von Passwörtern, um Benutzeranmeldeinformationen vor unbefugtem Zugriff zu schützen.

Was sind die Hauptfunktionen von kelektiv/node.bcrypt.js?

Die Hauptfunktionen von kelektiv/node.bcrypt.js sind: Password Hashing Utilities, Adaptive, Node.js Native Addons, Adaptive Hashing Costs, Brute Force Protections, Cryptographic Salt Generation, Node.js Cryptography Integrations, Password Verification.

Welche Open-Source-Alternativen gibt es zu kelektiv/node.bcrypt.js?

Open-Source-Alternativen zu kelektiv/node.bcrypt.js sind unter anderem: ncb000gt/node.bcrypt.js — This is a Node.js library for securely hashing and verifying passwords using the bcrypt adaptive hashing algorithm. It… dcodeio/bcrypt.js — bcrypt.js is a portable JavaScript implementation of the bcrypt algorithm used for securely hashing and verifying user… aarondl/authboss — Authboss is a modular HTTP authentication framework for managing user identity, session lifecycles, and password… nodejs/node-addon-api — This project provides a header-only C++ wrapper for the Node-API, serving as a framework for building high-performance… supertokens/supertokens-core — SuperTokens Core is an open-source, self-hosted authentication and identity management platform designed for… symfony/security-http — This project provides a comprehensive security framework for PHP applications, designed to manage the entire lifecycle…