awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
kelektiv avatar

kelektiv/node.bcrypt.js

0
View on GitHub↗
7,801 estrellas·551 forks·C++·MIT·3 vistas

Node.bcrypt.js

Esta es una biblioteca de hashing de contraseñas bcrypt y módulo de criptografía para Node.js. Proporciona un conjunto de herramientas para generar sales seguras, calcular hashes criptográficamente fuertes y verificar contraseñas para proteger las credenciales de los usuarios contra el acceso no autorizado.

La biblioteca implementa hashing adaptativo, utilizando un factor de costo configurable para aumentar el esfuerzo computacional requerido para forzar contraseñas por fuerza bruta. Incluye una herramienta de verificación de contraseñas que protege el proceso de comparación contra ataques de temporización.

El proyecto cubre el hashing seguro de contraseñas y la generación de sales, así como utilidades para la extracción de costos de hash y la verificación de contraseñas. Estas capacidades respaldan los flujos de trabajo de almacenamiento seguro de contraseñas y autenticación de usuarios.

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.

Historial de estrellas

Gráfico del historial de estrellas de kelektiv/node.bcrypt.jsGráfico del historial de estrellas de kelektiv/node.bcrypt.js

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Alternativas open-source a Node.bcrypt.js

Proyectos open-source similares, clasificados según cuántas características comparten con Node.bcrypt.js.
  • ncb000gt/node.bcrypt.jsAvatar de ncb000gt

    ncb000gt/node.bcrypt.js

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

    dcodeIO/bcrypt.js

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

    aarondl/authboss

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

    nodejs/node-addon-api

    2,400Ver en 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
    Ver en GitHub↗2,400
Ver las 30 alternativas a Node.bcrypt.js→

Preguntas frecuentes

¿Qué hace kelektiv/node.bcrypt.js?

Esta es una biblioteca de hashing de contraseñas bcrypt y módulo de criptografía para Node.js. Proporciona un conjunto de herramientas para generar sales seguras, calcular hashes criptográficamente fuertes y verificar contraseñas para proteger las credenciales de los usuarios contra el acceso no autorizado.

¿Cuáles son las características principales de kelektiv/node.bcrypt.js?

Las características principales de kelektiv/node.bcrypt.js son: Password Hashing Utilities, Adaptive, Node.js Native Addons, Adaptive Hashing Costs, Brute Force Protections, Cryptographic Salt Generation, Node.js Cryptography Integrations, Password Verification.

¿Qué alternativas de código abierto existen para kelektiv/node.bcrypt.js?

Las alternativas de código abierto para kelektiv/node.bcrypt.js incluyen: 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…