Skip to content

Commit d832e86

Browse files
committed
fix(bcrypt tool): allow salt rounds up to 100
Previously max salt rounds was 10
1 parent 80e46c9 commit d832e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/bcrypt/bcrypt.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const compareMatch = computed(() => compareSync(compareString.value, compareHash
2828
mb-2
2929
/>
3030
<n-form-item label="Salt count: " label-placement="left" label-width="120">
31-
<n-input-number v-model:value="saltCount" placeholder="Salt rounds..." :max="10" :min="0" w-full />
31+
<n-input-number v-model:value="saltCount" placeholder="Salt rounds..." :max="100" :min="0" w-full />
3232
</n-form-item>
3333

3434
<c-input-text :value="hashed" readonly text-center />

0 commit comments

Comments
 (0)