Esiste un MAC come hmac-sha2-256-96 mac in openssh?

1

Ho usato questo comando

$ ssh username@ip_addr -m hmac-sha2-256-96

ma ho ricevuto questo messaggio: unknown type mac

C'è un MAC come questo o non è veramente valido?

    
posta karan.patel 03.09.2016 - 08:32
fonte

1 risposta

1

No, non esiste un MAC simile. L'elenco dei MAC disponibili può essere interrogato utilizzando ssh -q mac :

$ ssh -Q mac
hmac-sha1
hmac-sha1-96
hmac-sha2-256
hmac-sha2-512
hmac-md5
hmac-md5-96
hmac-ripemd160
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]

Se vedo bene, stavi cercando di combinare hmac-md5-96 con hmac-sha2-256 , ma non ha alcun senso.

L'ultimo numero indica la lunghezza dell'hash (perché specificarlo due volte?), nel caso MD5 troncato a 96 bit (su 128 bit), ma nel caso SHA2, l'ultimo numero indica semplicemente la lunghezza di l'hash (perché SHA2 ha hash-length variabile, non solo il troncamento come MD5 lungo spezzato).

    
risposta data 03.09.2016 - 22:43
fonte

Leggi altre domande sui tag