Use correct sticker pack key length of 32. (#288)

* Use correct sticker pack key length of 32.

* Update dependencies

Co-authored-by: AsamK <asamk@gmx.de>
This commit is contained in:
signal-stickers
2020-03-30 15:19:17 -04:00
committed by GitHub
parent 57390ae735
commit b68575dd16
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ class KeyUtils {
}
static byte[] createStickerUploadKey() {
return getSecretBytes(64);
return getSecretBytes(32);
}
private static String getSecret(int size) {