Como configurar um servidor para usar a autenticação TLS-SRP?

6

Como fazer o trabalho funcionar?

Eu usei este manual . Eu criei um arquivo verificador e iniciei openssl s_server com um certificado RSA autoassinado. Agora não consigo me conectar a ele.

>gnutls-cli --srpusername user --srppasswd secret 127.0.0.1 -p 4433 --insecure
Processed 145 CA certificate(s).
Resolving '127.0.0.1'...
Connecting to '127.0.0.1:4433'...
*** Fatal error: A TLS fatal alert has been received.
*** Received alert [40]: Handshake failed
No certificates found!
*** Handshake has failed
GnuTLS error: A TLS fatal alert has been received.

Curl parece não funcionar também, mas os binários do win32 não têm SRP em "Features:" output de curl -V

Mesmo openssl s_client pára de funcionar até onde eu adiciono -cipher SRP param.

openssl s_server -srpvfile xx.srp -tls1 -cipher SRP -cert ssl.crt -key ssl.key -www

-

Loading 'screen' into random state - done
CONNECTED(00000750)
2672:error:1407745B:SSL routines:SSL23_GET_SERVER_HELLO:reason(1115):.\ssl\s23_c
lnt.c:741:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 7 bytes and written 321 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
---

E agora?

Estou usando as versões mais recentes (OpenSSL 1.0.1e 11 de fevereiro de 2013, gnutls-3.0.22-w32, build mais recente do curl win32).

Como as contas SRP devem ser registradas?

Por favor, adicione uma tag para TLS-SRP

    
por Smit Johnth 18.03.2013 / 06:34

1 resposta

6

Estas instruções funcionaram para mim usando o openssl 1.0.1e compilado no win32.

Passo 1. criar arquivo de senha SRP vazio passwd.txt

Etapa 2. Adicionar um usuário ao arquivo de senha do SRP

openssl srp -srpvfile passwd.txt -userinfo "This is Myself" -add myself
Enter pass phrase for myself:
Verifying - Enter pass phrase for myself:

Etapa 3. Inicie o servidor SRP

openssl s_server -nocert -cipher SRP -srpvfile passwd.txt -accept 444
Loading 'screen' into random state - done
Using default temp DH parameters
Using default temp ECDH parameters
ACCEPT

Etapa 4. Conecte-se ao servidor

openssl s_client -srpuser myself -cipher SRP -connect localhost:444
Loading 'screen' into random state - done
CONNECTED(00000108)
Enter pass phrase for SRP user:
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 2407 bytes and written 1184 bytes
---
New, TLSv1/SSLv3, Cipher is SRP-AES-256-CBC-SHA
Secure Renegotiation IS supported
Compression: NONE
Expansion: NONE
SSL-Session:
    Protocol  : TLSv1
    Cipher    : SRP-AES-256-CBC-SHA
    Session-ID: 69AE0C7ED831DCCDA0E79CB5ED55E0BF9C65CA64B4077585CF9DD93CEE611358
    
por 22.05.2013 / 01:35

Tags