passcode_biometric_auth 0.1.1
passcode_biometric_auth: ^0.1.1 copied to clipboard
A Flutter package that combines both passcode and biometric authentications effectively.
0.1.1 #
- fix: Update biometric authentication method to use isBiometricAuthenticated
0.1.0 #
- Release to stable.
0.1.0-rc #
-
BREAKING CHANGE:
The behavior ofonRead
andonWrite
inPasscodeBiometricAuthUI
has been updated. Thekey
now correctly incorporates theprefix
. If you need to maintain the previous behavior, remove theprefix
from your key as follows:final oldKey = newKey.substring(prefix.length + 1);
-
Introduced a new
salt
parameter for enhanced security. -
Added
PasscodeBiometricAuth.generateSalt()
to generate unique salt values. -
Provided
PasscodeBiometricAuth.sha256FromPasscode(String code, String salt)
to compute a secure SHA256 hash from the passcode and salt. -
Made
PasscodeBiometricAuth
const constructible. -
The
CreatePasscode
dialog will be dismissed before theRepeatPasscode
dialog is presented. -
Refactored internal code to boost performance.
-
Improved code comments for better clarity.
0.0.3 #
- Update dependencies.
- Update README.
- Update example.
0.0.2+3 #
- Update dialog configs.
0.0.1 #
- Initial release