awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 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·12 vues

Node.bcrypt.js

Il s'agit d'une bibliothèque de hachage de mots de passe bcrypt et d'un module de cryptographie pour Node.js. Elle fournit un ensemble d'outils pour générer des sels sécurisés, calculer des hashs cryptographiquement forts et vérifier les mots de passe pour protéger les identifiants des utilisateurs contre les accès non autorisés.

La bibliothèque implémente le hachage adaptatif, utilisant un facteur de coût configurable pour augmenter l'effort computationnel requis pour forcer les mots de passe par brute-force. Elle inclut un outil de vérification de mot de passe qui protège le processus de comparaison contre les attaques temporelles.

Le projet couvre le hachage sécurisé des mots de passe et la génération de sels, ainsi que des utilitaires pour l'extraction du coût de hachage et la vérification des mots de passe. Ces capacités prennent en charge le stockage sécurisé des mots de passe et les flux de travail d'authentification des utilisateurs.

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.

Historique des stars

Graphique de l'historique des stars pour kelektiv/node.bcrypt.jsGraphique de l'historique des stars pour kelektiv/node.bcrypt.js

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Questions fréquentes

Que fait kelektiv/node.bcrypt.js ?

Il s'agit d'une bibliothèque de hachage de mots de passe bcrypt et d'un module de cryptographie pour Node.js. Elle fournit un ensemble d'outils pour générer des sels sécurisés, calculer des hashs cryptographiquement forts et vérifier les mots de passe pour protéger les identifiants des utilisateurs contre les accès non autorisés.

Quelles sont les fonctionnalités principales de kelektiv/node.bcrypt.js ?

Les fonctionnalités principales de kelektiv/node.bcrypt.js sont : Password Hashing Utilities, Adaptive, Node.js Native Addons, Adaptive Hashing Costs, Brute Force Protections, Cryptographic Salt Generation, Node.js Cryptography Integrations, Password Verification.

Quelles sont les alternatives open-source à kelektiv/node.bcrypt.js ?

Les alternatives open-source à kelektiv/node.bcrypt.js incluent : 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…

Alternatives open source à Node.bcrypt.js

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Node.bcrypt.js.
  • ncb000gt/node.bcrypt.jsAvatar de ncb000gt

    ncb000gt/node.bcrypt.js

    7,800Voir sur GitHub↗

    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++
    Voir sur GitHub↗7,800
  • dcodeio/bcrypt.jsAvatar de dcodeIO

    dcodeIO/bcrypt.js

    3,797Voir sur GitHub↗

    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
    Voir sur GitHub↗3,797
  • aarondl/authbossAvatar de aarondl

    aarondl/authboss

    4,189Voir sur GitHub↗

    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
    Voir sur GitHub↗4,189
  • nodejs/node-addon-apiAvatar de nodejs

    nodejs/node-addon-api

    2,400Voir sur GitHub↗

    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
    Voir sur GitHub↗2,400
  • Voir les 30 alternatives à Node.bcrypt.js→