Skip to content

Commit 0c8e681

Browse files
author
liuhuiqi.7
committed
feat(e2ee): break phase
1 parent c75fc8e commit 0c8e681

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

volcenginesdkarkruntime/_utils/_key_agreement.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ def aes_gcm_decrypt_base64_list(key: bytes, nonce: bytes, ciphertext: str) -> st
108108
decrypted = aes_gcm_decrypt_base64_string(
109109
key, nonce, b64[i+4:])
110110
result.append(decrypted)
111+
break
111112
except Exception:
112113
pass
113114
return ''.join(result)

0 commit comments

Comments
 (0)