FLUTTER ECOSYSTEM

astudilloalex/dart-bcrypt

jBCrypt 修改后的代码以在 Dart VM 上运行

dart-bcrypt 项目封面
Stars
7
Forks
4
最近推送(UTC)
2026年1月3日
项目状态
未归档
astudilloalex GitHub avatar
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 2 项
  • lint开发依赖^2.8.0
  • test开发依赖^1.28.0

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

style: lint

Hash your passwords with BCrypt algorithm, this is a jBCrypt modified code to work with Dart.

Features

Use BCrypt password-hashing function to keep your system secure.

Getting started

pub package

Only add bcrypt package to your pubspec.yaml.

dependencies:
  bcrypt: ^1.2.0

Usage

Use Bcrypt to hash and check password.

final String hashed = BCrypt.hashpw('password', BCrypt.gensalt());
// $2a$10$r6huirn1laq6UXBVu6ga9.sHca6sr6tQl3Tiq9LB6/6LMpR37XEGu

final bool checkPassword = BCrypt.checkpw('password', hashed);
// true

Additional information

This package is modified jBCrypt code used in Java and Spring Boot to improve security when saving passwords.