chore: update deps

This commit is contained in:
鲁树人
2025-09-03 21:27:38 +09:00
parent c41e5ae531
commit 62e49804a5
9 changed files with 1222 additions and 1256 deletions

View File

@@ -3,7 +3,7 @@ import { DecipherInstance, DecipherOK, DecipherResult, Status } from '~/decrypt-
export class TransparentDecipher implements DecipherInstance {
cipherName = 'none';
async decrypt(buffer: Uint8Array): Promise<DecipherResult | DecipherOK> {
async decrypt(buffer: Uint8Array<ArrayBuffer>): Promise<DecipherResult | DecipherOK> {
return {
cipherName: 'None',
status: Status.OK,