Commit 3498675f authored by Rafaël Carré's avatar Rafaël Carré

Public keys should be constant data

(cherry picked from commit ecb0421854e16ddb7a32d716a3565440378c5672)
Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 7ce065dd
...@@ -14,12 +14,12 @@ ...@@ -14,12 +14,12 @@
* expirates on 2013-01-31 * expirates on 2013-01-31
*/ */
static uint8_t videolan_public_key_longid[8] = { static const uint8_t videolan_public_key_longid[8] = {
0xA7, 0x41, 0x54, 0x9F, 0x59, 0xED, 0x29, 0x87 0xA7, 0x41, 0x54, 0x9F, 0x59, 0xED, 0x29, 0x87
}; };
/* gpg --export --armor "<id>"|sed -e s/^/\"/ -e s/\$/\\\\n\"/ */ /* gpg --export --armor "<id>"|sed -e s/^/\"/ -e s/\$/\\\\n\"/ */
static uint8_t videolan_public_key[] = { static const uint8_t videolan_public_key[] = {
"-----BEGIN PGP PUBLIC KEY BLOCK-----\n" "-----BEGIN PGP PUBLIC KEY BLOCK-----\n"
"Version: GnuPG v1.4.11 (GNU/Linux)\n" "Version: GnuPG v1.4.11 (GNU/Linux)\n"
"\n" "\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment