Durante la creazione di un file crittografato in AIX, ho ricevuto questo errore:
$ openssl enc -aes-256-cbc -salt -in test.img -out test.img.enc
test.img: Value too large to be stored in data type
14221428:error:0200107F:system library:fopen:Value too large to be stored in:bss_file.c:356:fopen('test.img','r')
14221428:error:20074002:BIO routines:FILE_CTRL:system lib:bss_file.c:358:
test.img La dimensione del file è di 35 GB
Lo stesso comando ha funzionato in Linux per file da 100 GB.
openssl
di conoscere qualcosa sulla dimensione dei file di input e output? Qualcosa di similecat test.img | openssl enc -aes-256-cbc -salt | cat >test.img.enc
truss openssl enc -aes-256-cbc -salt -in test.img -out test.img.enc
openssl version
.