Skip to content

Commit

Permalink
fix(authn): remove unsupported mac func
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon authored and ysfscream committed Dec 24, 2024
1 parent c36c016 commit eaf548b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const formData = computed<PasswordHashAlgorithmFormItems>({
const { HashOptions } = usePassword()
const saltPositionOpt = [SaltPosition.Disable, SaltPosition.Prefix, SaltPosition.Suffix]
const macFunOpt = ['md4', 'md5', 'ripemd160', 'sha', 'sha224', 'sha256', 'sha384', 'sha512']
const macFunOpt = ['sha', 'sha224', 'sha256', 'sha384', 'sha512']
const needSelectSaltPosition = computed(() => {
const { name } = formData.value.password_hash_algorithm
Expand Down

0 comments on commit eaf548b

Please sign in to comment.