mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-24 02:18:15 +01:00
Replace typescript compiler with native tsgo compiler
This commit is contained in:
@@ -444,7 +444,10 @@ function getReduxStickerActions() {
|
||||
return actions.stickers;
|
||||
}
|
||||
|
||||
function decryptSticker(packKey: string, ciphertext: Uint8Array): Uint8Array {
|
||||
function decryptSticker(
|
||||
packKey: string,
|
||||
ciphertext: Uint8Array<ArrayBuffer>
|
||||
): Uint8Array<ArrayBuffer> {
|
||||
const binaryKey = Bytes.fromBase64(packKey);
|
||||
const derivedKey = deriveStickerPackKey(binaryKey);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user