auth
Module with classes and functions used for authentication and password handling.
Classes:
Name | Description |
---|---|
AuthCallback |
Class to handle authorization callback. |
AuthContext |
Class to handle authentication context and related operations. |
AuthUser |
Class to handle user authentication and management. |
DataLunchLoginHandler |
Custom Panel login Handler. |
DataLunchProvider |
Custom Panel auth provider. |
PasswordEncrypt |
Class that store the encrypted value of a password. |
PasswordHash |
Class that store the hashed value of a password. |
Attributes:
Name | Type | Description |
---|---|---|
log |
Logger
|
Module logger. |
pwd_context |
CryptContext
|
Crypt context with configurations for passlib (selected algorithm, etc.). |
pwd_context
module-attribute
¶
pwd_context: CryptContext = CryptContext(
schemes=["pbkdf2_sha256"], deprecated="auto"
)
Crypt context with configurations for passlib (selected algorithm, etc.).
AuthCallback
¶
Class to handle authorization callback.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
DictConfig
|
Hydra configuration dictionary. |
required |
authorize_guest_users
|
bool
|
Set to |
False
|
Methods:
Name | Description |
---|---|
__init__ |
|
authorize |
Authorization callback: read config, user info and the target path of the |
Attributes:
Name | Type | Description |
---|---|---|
authorize_guest_users |
|
|
config |
|
Source code in dlunch/auth.py
977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 |
|
__init__
¶
__init__(
config: DictConfig, authorize_guest_users: bool = False
) -> None
Source code in dlunch/auth.py
986 987 988 989 990 |
|
authorize
¶
Authorization callback: read config, user info and the target path of the requested resource.
Return True
(authorized) or False
(not authorized) by checking current user
and target path.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_info
|
dict
|
dictionary with user info passed by Panel to the authorization handle. |
required |
target_path
|
str
|
path of the requested resource. |
required |
Returns:
Type | Description |
---|---|
bool
|
authorization flag. |
Source code in dlunch/auth.py
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 |
|
AuthContext
¶
Class to handle authentication context and related operations.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
DictConfig
|
Hydra configuration dictionary. |
required |
Methods:
Name | Description |
---|---|
__init__ |
|
auth_type |
Check configuration object and return authentication type. |
backend_submit_password |
Submit password to database from backend but used also from frontend as part of |
generate_password |
Generate a random password. |
is_auth_active |
Check configuration object and return |
is_basic_auth_active |
Check configuration object and return |
list_privileged_users |
List only privileged users (from |
list_users_guests_and_privileges |
Join |
set_app_auth_and_encryption |
Setup Panel authorization and encryption. |
set_guest_user_password |
If guest user is active return a password, otherwise return an empty string. |
submit_password |
Same as backend_submit_password with an additional check on old password. |
Attributes:
Name | Type | Description |
---|---|---|
config |
Hydra configuration dictionary. |
|
database_connector |
DatabaseConnector
|
Object that handles database connection and operations |
Source code in dlunch/auth.py
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
|
database_connector
instance-attribute
¶
database_connector: DatabaseConnector = DatabaseConnector(
config=config
)
Object that handles database connection and operations
__init__
¶
__init__(config: DictConfig) -> None
Source code in dlunch/auth.py
406 407 408 409 410 411 412 |
|
auth_type
¶
auth_type() -> str | None
Check configuration object and return authentication type.
Returns:
Type | Description |
---|---|
str | None
|
authentication type. None if no authentication is active. |
Source code in dlunch/auth.py
439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
|
backend_submit_password
¶
backend_submit_password(
gi: GraphicInterface | BackendInterface,
user: str = None,
user_is_guest: bool | None = None,
user_is_admin: bool | None = None,
logout_on_success: bool = False,
) -> bool
Submit password to database from backend but used also from frontend as part of submit_password
function.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gi
|
GraphicInterface | BackendInterface
|
graphic interface object (used to interact with Panel widgets). |
required |
user
|
str
|
username. Defaults to None. |
None
|
user_is_guest
|
bool | None
|
guest flag (true if guest). Defaults to None. |
None
|
user_is_admin
|
bool | None
|
admin flag (true if admin). Defaults to None. |
None
|
logout_on_success
|
bool
|
set to true to force logout once the new password is set. Defaults to False. |
False
|
Returns:
Type | Description |
---|---|
bool
|
true if successful, false otherwise. |
Source code in dlunch/auth.py
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
|
generate_password
staticmethod
¶
generate_password(
alphabet: str | None = None,
special_chars: str | None = "",
length: int = 12,
) -> str
Generate a random password.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
alphabet
|
str | None
|
list of characters to use as alphabet to generate the password. Defaults to None. |
None
|
special_chars
|
str | None
|
special characters to include inside the password string. Defaults to "". |
''
|
length
|
int
|
length of the random password. Defaults to 12. |
12
|
Returns:
Type | Description |
---|---|
str
|
random password. |
Source code in dlunch/auth.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
|
is_auth_active
¶
is_auth_active() -> bool
Check configuration object and return True
if basic authentication or OAuth is active.
Return False
otherwise.
Returns:
Type | Description |
---|---|
bool
|
|
Source code in dlunch/auth.py
425 426 427 428 429 430 431 432 433 434 435 436 437 |
|
is_basic_auth_active
¶
is_basic_auth_active() -> bool
Check configuration object and return True
if basic authentication is active.
Return False
otherwise.
Returns:
Type | Description |
---|---|
bool
|
|
Source code in dlunch/auth.py
414 415 416 417 418 419 420 421 422 423 |
|
list_privileged_users
¶
List only privileged users (from privileged_users
table).
Returns:
Type | Description |
---|---|
list[str]
|
list of usernames. |
Source code in dlunch/auth.py
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 |
|
list_users_guests_and_privileges
¶
list_users_guests_and_privileges() -> DataFrame
Join privileged_users
and credentials
tables to list normal users,
admins and guests.
Returns a dataframe.
Returns:
Type | Description |
---|---|
DataFrame
|
dataframe with users and privileges. |
Source code in dlunch/auth.py
503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
|
set_app_auth_and_encryption
¶
set_app_auth_and_encryption() -> None
Setup Panel authorization and encryption.
Namely
- Encryption key
- Cookie expiry date
Raises:
Type | Description |
---|---|
ImportError
|
missing library (cryptography). |
Source code in dlunch/auth.py
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 |
|
set_guest_user_password
¶
set_guest_user_password() -> str
If guest user is active return a password, otherwise return an empty string.
This function always returns an empty string if basic authentication is not active.
Guest user and basic authentication are handled through configuration files.
If the flag reset_guest_user_password
is set to True
the password is created
and uploaded to database. Otherwise the existing password is queried from database
credentials
table.
Returns:
Type | Description |
---|---|
str
|
guest user password or empty string if basic authentication is not active. |
Source code in dlunch/auth.py
579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 |
|
submit_password
¶
submit_password(gi: GraphicInterface) -> bool
Same as backend_submit_password with an additional check on old password.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gi
|
GraphicInterface
|
graphic interface object (used to interact with Panel widgets). |
required |
Returns:
Type | Description |
---|---|
bool
|
true if successful, false otherwise. |
Source code in dlunch/auth.py
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 |
|
AuthUser
¶
Class to handle user authentication and management.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
DictConfig
|
Hydra configuration dictionary. |
required |
name
|
str | None
|
username. Defaults to None. |
None
|
auth_context
|
AuthContext | None
|
authentication context. Defaults to None. |
None
|
Methods:
Name | Description |
---|---|
__init__ |
|
add_privileged_user |
Add user id to |
add_user_hashed_password |
Add user credentials to |
get_user_from_panel_state |
Return the user from Panel state object. |
is_admin |
Check if a user is an admin by checking the |
is_guest |
Check if a user is a guest by checking if it is listed inside the |
remove_user |
Remove user from the database. |
Attributes:
Name | Type | Description |
---|---|---|
auth_context |
|
|
config |
|
|
name |
|
|
password_hash |
PasswordHash | None
|
Query the database to retrieve the hashed password for the user. |
Source code in dlunch/auth.py
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 |
|
password_hash
property
¶
password_hash: PasswordHash | None
Query the database to retrieve the hashed password for the user.
Returns:
Type | Description |
---|---|
PasswordHash | None
|
returns password object if the user exists, |
__init__
¶
__init__(
config: DictConfig,
name: str | None = None,
auth_context: AuthContext | None = None,
) -> None
Source code in dlunch/auth.py
806 807 808 809 810 811 812 813 814 815 |
|
add_privileged_user
¶
add_privileged_user(is_admin: bool) -> None
Add user id to privileged_users
table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
is_admin
|
bool
|
admin flag. |
required |
Source code in dlunch/auth.py
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 |
|
add_user_hashed_password
¶
add_user_hashed_password(password: str) -> None
Add user credentials to credentials
table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not hashed). |
required |
Source code in dlunch/auth.py
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 |
|
get_user_from_panel_state
¶
get_user_from_panel_state() -> str
Return the user from Panel state object.
If config.auth.remove_email_domain
is True
, remove the email domain from username.
Returns:
Type | Description |
---|---|
str
|
username. |
Source code in dlunch/auth.py
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 |
|
is_admin
¶
is_admin() -> bool
Check if a user is an admin by checking the privileged_users
table.
Returns:
Type | Description |
---|---|
bool
|
admin flag. |
Source code in dlunch/auth.py
862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 |
|
is_guest
¶
Check if a user is a guest by checking if it is listed inside the privileged_users
table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
allow_override
|
bool
|
override enablement flag. Defaults to True. |
True
|
Returns:
Type | Description |
---|---|
bool
|
guest flag. |
Source code in dlunch/auth.py
833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 |
|
remove_user
¶
remove_user() -> dict
Remove user from the database.
Returns:
Type | Description |
---|---|
dict
|
dictionary with |
Source code in dlunch/auth.py
945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 |
|
DataLunchLoginHandler
¶
Bases: RequestHandler
Custom Panel login Handler.
This class run the user authentication process for Data-Lunch when basic authentication is selected in configuration options.
It is responsible of rendering the login page, validate the user (and update its password hash if the hashing protocol is superseeded) and set the current user once validated.
Methods:
Name | Description |
---|---|
check_permission |
Validate user. |
get |
Render the login template. |
post |
Validate user and set the current user if valid. |
set_current_user |
Set secure cookie for the selected user. |
Source code in dlunch/auth.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
check_permission
¶
Validate user.
Automatically update the password hash if it was generated by an old hashing protocol.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user
|
str
|
username. |
required |
password
|
str
|
password (not hashed). |
required |
Returns:
Type | Description |
---|---|
bool
|
user authentication flag ( |
Source code in dlunch/auth.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
get
¶
get() -> None
Render the login template.
Source code in dlunch/auth.py
79 80 81 82 83 84 85 86 |
|
post
¶
post() -> None
Validate user and set the current user if valid.
Source code in dlunch/auth.py
113 114 115 116 117 118 119 120 121 122 123 124 125 |
|
set_current_user
¶
set_current_user(user: str)
Set secure cookie for the selected user.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user
|
str
|
username. |
required |
Source code in dlunch/auth.py
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
DataLunchProvider
¶
Bases: OAuthProvider
Custom Panel auth provider.
It's a simple login page with a form that interacts with authentication tables.
It is used only if basic authentication is selected in Data-Lunch configuration options.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
DictConfig
|
Hydra configuration dictionary. |
required |
login_template
|
str | None
|
path to login template. Defaults to None. |
None
|
logout_template
|
str | None
|
path to logout template. Defaults to None. |
None
|
Methods:
Name | Description |
---|---|
__init__ |
|
Attributes:
Name | Type | Description |
---|---|---|
config |
DictConfig
|
Hydra configuration dictionary. |
login_handler |
DataLunchLoginHandler
|
Data-Lunch custom login handler. |
login_url |
str
|
Login url ( |
Source code in dlunch/auth.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
__init__
¶
__init__(
config: DictConfig,
login_template: str | None = None,
logout_template: str | None = None,
) -> None
Source code in dlunch/auth.py
166 167 168 169 170 171 172 173 174 175 176 177 178 |
|
PasswordEncrypt
¶
Class that store the encrypted value of a password.
The encryption is based on Panel encryption system.
The class has methods to encrypt and decrypt a string.
The encrypted password may be passed to instantiate the new object.
If the encrypted password is not aviailable use the class method
PasswordEncrypt.from_str
to create an istance with the string properly
encrypted.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
encrypted_password
|
str
|
encrypted password. |
required |
Methods:
Name | Description |
---|---|
__eq__ |
Decrypt the candidate string and compares it to the stored encrypted value. |
__init__ |
|
__repr__ |
Simple object representation. |
decrypt |
Return decrypted password. |
encrypt |
Return encrypted password. |
from_str |
Creates a PasswordEncrypt from the given string. |
Attributes:
Name | Type | Description |
---|---|---|
encrypted_password |
str
|
Encrypted password. |
Source code in dlunch/auth.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 |
|
encrypted_password
instance-attribute
¶
encrypted_password: str = encrypted_password
Encrypted password.
__eq__
¶
Decrypt the candidate string and compares it to the stored encrypted value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
candidate
|
str
|
candidate string. |
required |
Returns:
Type | Description |
---|---|
bool
|
|
Source code in dlunch/auth.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
|
__init__
¶
__init__(encrypted_password: str) -> None
Source code in dlunch/auth.py
319 320 321 322 323 324 325 326 |
|
__repr__
¶
__repr__() -> str
Simple object representation.
Returns:
Type | Description |
---|---|
str
|
string representation. |
Source code in dlunch/auth.py
346 347 348 349 350 351 352 |
|
decrypt
¶
decrypt() -> str
Return decrypted password.
Returns:
Type | Description |
---|---|
str
|
plain password (not encrypted). |
Source code in dlunch/auth.py
372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
encrypt
staticmethod
¶
Return encrypted password.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not encrypted). |
required |
Returns:
Type | Description |
---|---|
str
|
encrypted password. |
Source code in dlunch/auth.py
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 |
|
from_str
classmethod
¶
Creates a PasswordEncrypt from the given string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not encrypted). |
required |
Returns:
Type | Description |
---|---|
PasswordEncrypt
|
new class instance with encrypted value already stored. |
Source code in dlunch/auth.py
386 387 388 389 390 391 392 393 394 395 396 |
|
PasswordHash
¶
Class that store the hashed value of a password.
The password hash may be passed to instantiate the new object.
If the hash is not aviailable use the class method
PasswordHash.from_str
to create an istance with the string properly
hashed.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hashed_password
|
str
|
password hash. |
required |
Methods:
Name | Description |
---|---|
__eq__ |
Hashes the candidate string and compares it to the stored hash. |
__init__ |
|
__repr__ |
Simple object representation. |
from_str |
Creates a PasswordHash from the given string. |
hash |
Return hash of the given password. |
verify |
Check a password against its hash and return |
verify_and_update |
Check a password against its hash and return |
Attributes:
Name | Type | Description |
---|---|---|
hashed_password |
str
|
Password hash. |
Source code in dlunch/auth.py
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
|
__eq__
¶
Hashes the candidate string and compares it to the stored hash.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
candidate
|
str
|
candidate string. |
required |
Returns:
Type | Description |
---|---|
bool
|
|
Source code in dlunch/auth.py
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
|
__init__
¶
__init__(hashed_password: str) -> None
Source code in dlunch/auth.py
208 209 210 211 212 213 214 215 |
|
__repr__
¶
__repr__() -> str
Simple object representation.
Returns:
Type | Description |
---|---|
str
|
string representation. |
Source code in dlunch/auth.py
235 236 237 238 239 240 241 |
|
from_str
classmethod
¶
Creates a PasswordHash from the given string.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not hashed). |
required |
Returns:
Type | Description |
---|---|
PasswordHash
|
new class instance with hashed value already stored. |
Source code in dlunch/auth.py
290 291 292 293 294 295 296 297 298 299 300 |
|
hash
staticmethod
¶
Return hash of the given password.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not hashed). |
required |
Returns:
Type | Description |
---|---|
str
|
hashed password. |
Source code in dlunch/auth.py
278 279 280 281 282 283 284 285 286 287 288 |
|
verify
¶
Check a password against its hash and return True
if check passes,
False
otherwise.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not hashed). |
required |
Returns:
Type | Description |
---|---|
bool
|
|
Source code in dlunch/auth.py
243 244 245 246 247 248 249 250 251 252 253 254 255 |
|
verify_and_update
¶
Check a password against its hash and return True
if check passes,
False
otherwise. Return also a new hash if the original hashing method
is superseeded
Parameters:
Name | Type | Description | Default |
---|---|---|---|
password
|
str
|
plain password (not hashed). |
required |
Returns:
Type | Description |
---|---|
tuple[bool, str | None]
|
return a tuple with two elements (valid, new_hash).
valid: |
Source code in dlunch/auth.py
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 |
|