refactor: move misc/password.ts to backend-rs #15
Loading…
Reference in a new issue
No description provided.
Delete branch "refactor/rs/misc/password"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
misc/password.ts
を Rust に移行してみました。ただ、JavaScript の argon2 の関数は非同期関数になっているのに対し、Rust の argon2 では同期関数になっており、一応 argon2_async も存在していますが少し古いので悩んでいます。
一旦同期の argon2 を選んだのですが、関数は互換性のために
async
を付けました。必要であれば argon2-async に変えるか、Rust 側のasync
を削除して TypeScript 側のawait
を削除します。