passlib icon indicating copy to clipboard operation
passlib copied to clipboard

could add rounds when hash ?

Open wuxiao-ling197 opened this issue 4 months ago • 0 comments

hello , to enforce the hashed password security level in prod environment , i`d think whether golang can add its rounds like passlib usage in python:

pwd_context = CryptContext(
    schemes=["pbkdf2_sha256"],
    default="pbkdf2_sha256",
    pbkdf2_sha256__default_rounds=30000
 )

wuxiao-ling197 avatar Feb 05 '24 02:02 wuxiao-ling197