Explorar el Código

Add skip crypt functionality

pull/178/head
Dmitry Klepikov hace 1 año
padre
commit
f35f91ec6b
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. +6
    -0
      wiringPi/drcNet.c

+ 6
- 0
wiringPi/drcNet.c Ver fichero

@@ -102,6 +102,12 @@ static char *getChallenge (int fd)

static int authenticate (int fd, const char *pass)
{
#ifdef NO_CRYPT
(void)fd;
(void)pass;
return -1;
#endif

char *challenge ;
char *encrypted ;
char salted [1024] ;


Cargando…
Cancelar
Guardar