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.