vlc_pgpkey.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_pgpkey.h: VideoLAN PGP Public Key used to sign releases
  3.  *****************************************************************************
  4.  * Copyright © 2008 the VideoLAN team
  5.  * $Id: 07492864cfcccef1911694602dc14a88f47b5084 $
  6.  *
  7.  * Authors: Rafaël Carré <funman@videolanorg>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either release 2 of the License, or
  12.  * (at your option) any later release.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /* We trust this public key, and by extension, also keys signed by it. */
  24. /*
  25.  * VideoLAN Release Signing Key (2010)
  26.  * expirates on 2011-01-25
  27.  */
  28. static uint8_t videolan_public_key_longid[8] = {
  29.   0x77, 0x72, 0xA5, 0x9D, 0x71, 0x44, 0xD4, 0x85
  30. };
  31. /* gpg --export --armor "<id>"|sed -e s/^/"/ -e s/$/\\n"/ */
  32. static uint8_t videolan_public_key[] = {
  33.     "-----BEGIN PGP PUBLIC KEY BLOCK-----n"
  34.     "Version: GnuPG v2.0.14 (GNU/Linux)n"
  35.     "n"
  36.     "mQGiBEtfSLMRBADp810mFfU9tOq5S8+HFAfCgOubfRBK36bFXb7cp1lYGjp8bEcSn"
  37.     "tP6Vki4vpFGpLyGO4b5SJbh8dld6lFQjhOosswrbq0xC5OkaVfehNDmzfFsnRJOmn"
  38.     "/fsC4G2N6yhg5gsgwd9BgEopSINr/yfm9uhb68T6KhWz/TFujBtZAEdibwCgx6qYn"
  39.     "65yRbP1A+XY+5PFC3CEnWoEEAN4AIYHYhg038lz95e08/VVR4UDCr6lWCL3Lvhotn"
  40.     "eQLCrwObxV+Qw5N4Llagc/CbSeP9UueSxJTvfSjZsU3X83lwOEd5psL7Ck5rmcfAn"
  41.     "Rnxvv6T/q2//H1D+OVgBGCqFZdWRos/wmnvmREVhW//jLyKHu8Hi19OO0OMt/d8En"
  42.     "jWOqA/wLzLc7vE1Yh1xv4o4UhdwfrL6h336FUi6d8O3oEl6pZ/1qr29MFCOa3fw2n"
  43.     "nyuuKfO725CiWlkl4UXCkWpL+b9OiTwFUEL5+806DbkaB9heYMdfLM8TVhno5kAin"
  44.     "K1wn9+Agm0S9lrtgO7a8qFcdWOiGdqlliTRDSWiIdxACBQ4pJbQjVmlkZW9MQU4gn"
  45.     "UmVsZWFzZSBTaWduaW5nIEtleSAoMjAxMCmIaAQTEQIAKAUCS19IswIbAwUJAeEzn"
  46.     "gAYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQd3KlnXFE1IVTcQCgpFNlNeQwn"
  47.     "6B0A4lN+7iW3yQfUSasAnj0yBAGaqUc7n5U4w4CDk4R8bwOAiEYEEBECAAYFAktfn"
  48.     "SNkACgkQ2lExeVeICH3CxgCeLxAZJxKiVK/JzjBOlZpTHwNsOgcAnjDePDBke5HRn"
  49.     "5ag3WmOScs6M76hhiEYEEBECAAYFAktfSQYACgkQ/SG8O6w+CHmfKQCaA7chfXSDn"
  50.     "AL7iPBe9mtMJnAB2QkYAn082cZyQTknI3V5ag/3+XjUcZaQVn"
  51.     "=9EFCn"
  52.     "-----END PGP PUBLIC KEY BLOCK-----n"
  53. };