mirror of
https://github.com/langgenius/dify.git
synced 2025-11-09 16:03:39 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
import base64
|
|
|
|
from libs import rsa
|
|
|
|
|
|
def obfuscated_token(token: str) -> str:
|
|
if not token:
|
|
return token
|
|
if len(token) <= 8:
|
|
return "*" * 20
|
|
return token[:6] + "*" * 12 + token[-2:]
|
|
|
|
|
|
def full_mask_token(token_length=20):
|
|
return "*" * token_length
|
|
|
|
|
|
def encrypt_token(tenant_id: str, token: str):
|
|
from extensions.ext_database import db
|
|
from models.account import Tenant
|
|
|
|
if not (tenant := db.session.query(Tenant).where(Tenant.id == tenant_id).first()):
|
|
raise ValueError(f"Tenant with id {tenant_id} not found")
|
|
assert tenant.encrypt_public_key is not None
|
|
encrypted_token = rsa.encrypt(token, tenant.encrypt_public_key)
|
|
return base64.b64encode(encrypted_token).decode()
|
|
|
|
|
|
def decrypt_token(tenant_id: str, token: str) -> str:
|
|
return rsa.decrypt(base64.b64decode(token), tenant_id)
|
|
|
|
|
|
def batch_decrypt_token(tenant_id: str, tokens: list[str]):
|
|
rsa_key, cipher_rsa = rsa.get_decrypt_decoding(tenant_id)
|
|
|
|
return [rsa.decrypt_token_with_decoding(base64.b64decode(token), rsa_key, cipher_rsa) for token in tokens]
|
|
|
|
|
|
def get_decrypt_decoding(tenant_id: str):
|
|
return rsa.get_decrypt_decoding(tenant_id)
|
|
|
|
|
|
def decrypt_token_with_decoding(token: str, rsa_key, cipher_rsa):
|
|
return rsa.decrypt_token_with_decoding(base64.b64decode(token), rsa_key, cipher_rsa)
|