OpenSSL: qual è la differenza tra -kfile e -pass?

0

Sembra che sia sia -kfile che -pass possano essere utilizzati per crittografare i file con un file di chiavi a 2048 bit? Non capisco la differenza tra i due metodi:

$ openssl enc -salt -aes-256-cbc -in inputfile.txt -kfile 2048bit_keyfile.key 

$ openssl enc -salt -aes-256-cbc -in inputfile.txt -pass file:2048bit_keyfile.key -out outputfile.txt.enc

Quale metodo utilizza l'entropia completa del buco della serratura a 2048 bit?

    
posta user189837 26.10.2018 - 08:52
fonte

1 risposta

0

-k e -kfile sono deprecati

La pagina wiki ENC di OpenSSL dice questo:

-k password, -kfile filename
Both option are used to specify a password or a file containing the password which is used for key derivation. However they are deprecated. You should use the -pass option instead. The equivalents are -pass pass:password and -pass: file:filename respectively.

    
risposta data 26.10.2018 - 09:20
fonte

Leggi altre domande sui tag