-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
支持Argon2Id算法 支持解密组织数据 预留API登录接口(但没卵用)
- Loading branch information
Showing
8 changed files
with
931 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
requests>=2.31.0 | ||
passlib>=1.7.4 | ||
hkdf>=0.0.3 | ||
cryptography>=41.0.5 | ||
cryptography>=41.0.5 | ||
argon2-cffi>=23.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name="python-vaultwarden", | ||
version="0.0.3", | ||
version="0.0.4", | ||
author="BoringCat", | ||
author_email="[email protected]", | ||
description="Simple VaultWarden API for Python", | ||
|
@@ -17,6 +17,7 @@ | |
'passlib>=1.7.4', | ||
'hkdf>=0.0.3', | ||
'cryptography>=41.0.5', | ||
'argon2-cffi>=23.1.0', | ||
], | ||
python_requires='>=3', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from .api import VaultwardenAPI | ||
from .types import UriMatchType | ||
|
||
__all__ = ['VaultwardenAPI', 'UriMatchType'] |
Oops, something went wrong.