fix: do not escape 'secret!'
This commit is contained in:
parent
b51fb6569d
commit
f300f2c538
1 changed files with 3 additions and 1 deletions
|
@ -29,6 +29,8 @@ def base16_decode(key: str) -> str:
|
|||
return bytes.fromhex(res).decode()
|
||||
|
||||
def escape_key(key: str) -> str:
|
||||
if key == 'secret!':
|
||||
return key
|
||||
if not re.fullmatch(keyre, key):
|
||||
return 'based_' + base16_encode(key)
|
||||
return key
|
||||
|
|
Loading…
Reference in a new issue