Skip to content

Commit

Permalink
Update TLS fingerprint, version
Browse files Browse the repository at this point in the history
  • Loading branch information
thess committed Jan 3, 2017
1 parent b600c53 commit f5fa4dd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Dependencies
- pthreads
- libao
- gcrypt
- gnutls
- gnutls or mbed TLS
- json-c
- libfaad2 and/or libmad
- UTF-8 console/locale
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

AC_PREREQ([2.69])
AC_INIT([pianod],
174.04-sc,
174.05-sc,
[[email protected]],
,[http://deviousfish.com/pianod])
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
Expand Down Expand Up @@ -45,7 +45,7 @@ PKG_CHECK_MODULES([json], [json-c],,
AC_CHECK_LIB([gcrypt], [gcry_cipher_open],,
[AC_MSG_ERROR([Cannot find required library: libgcrypt],1)])
# Check for SSL option
AC_ARG_WITH(mbedtls, [ --with-mbedtls Build waitress with mbed TLS (default GNUTLS)], [
AC_ARG_WITH(mbedtls, [ --with-mbedtls build waitress with mbed TLS (default GNUTLS)], [
AC_MSG_RESULT(>>Using mbedTLS)
HAS_MBEDTLS=1
AC_DEFINE([USE_MBEDTLS], 1, [Build for mbed TLS])
Expand Down
4 changes: 2 additions & 2 deletions contrib/startscript-example
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# set pandora device "android-generic"
# set encryption password "6#26FRL$ZWD"
# set decryption password "R=U!LH$O2B#"
# set tls fingerprint 13CC51AC0C31CD96C55015C76914360F7AC41A00
# set tls fingerprint FC2E6AF49FC63AEDAD1078DC22D1185B809E7534
#
#
#
Expand All @@ -22,7 +22,7 @@
# set pandora device "D01"
# set encryption password "2%3WCL*JU$MP]4"
# set decryption password "U#IO$RZPAB%VX2"
# set tls fingerprint 7F2BFD338D08D6F952D215C0FC8C3C4C1DC1772F
# set tls fingerprint FC2E6AF49FC63AEDAD1078DC22D1185B809E7534
# set audio quality high
#
#
Expand Down
8 changes: 4 additions & 4 deletions src/settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ void settings_initialize (BarSettings_t *settings) {
settings->user_file = strdup (password_file);
settings->automatic_mode = TUNE_ON_LOGINS;
settings->pandora_retry = 60;
memcpy (settings->tlsFingerprint, "\x13\xCC\x51\xAC\x0C\x31\xCD\x96"
"\xC5\x50\x15\xC7\x69\x14\x36\x0F\x7A\xC4\x1A\x00",
sizeof (settings->tlsFingerprint));

memcpy (settings->tlsFingerprint,
"\xFC\x2E\x6A\xF4\x9F\xC6\x3A\xED\xAD\x10\x78\xDC\x22\xD1\x18\x5B\x80\x9E\x75\x34",
sizeof (settings->tlsFingerprint));

/* check environment variable if proxy is not set explicitly */
if (settings->proxy == NULL) {
Expand Down

0 comments on commit f5fa4dd

Please sign in to comment.