Use correct sticker pack key length of 32.

This commit is contained in:
Signal Stickers 2020-03-29 22:20:53 -04:00
parent 57390ae735
commit cf5945f4ea

View file

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