feat: add xiami crypto & have a working decryption workflow (#2, #9)

This commit is contained in:
鲁树人
2023-05-09 01:23:35 +01:00
parent 5ad054631c
commit 1c1d234244
6 changed files with 109 additions and 7 deletions

View File

@@ -1,3 +1,7 @@
export enum DECRYPTION_WORKER_ACTION_NAME {
DECRYPT = 'DECRYPT',
}
export interface DecryptionResult {
decrypted: string; // blob uri
}