Encoding
hash_password(password: str) -> str
Hashes the password for further requests.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
password |
str
|
The password to hash. |
required |
Returns:
| Type | Description |
|---|---|
str
|
The hashed password. |
Source code in gd/encoding.py
362 363 364 365 366 367 368 369 370 371 | |