Re: [openssl-users] Decrypting an OpenSSL encrypt AES256-CBC data

2018-12-29 Thread Jakob Bohm via openssl-users
On 29/12/2018 13:41, Ertan Küçükoglu wrote: Hello, Windows program does not know length of data. I would like to use some kind of standard method and use exact method on Windows to decrypt. I think my problem is really that I do not know what "padding" is used by default. I have found below

Re: [openssl-users] Decrypting an OpenSSL encrypt AES256-CBC data

2018-12-29 Thread Ertan Küçükoglu
Hello, Windows program does not know length of data. I would like to use some kind of standard method and use exact method on Windows to decrypt. I think my problem is really that I do not know what "padding" is used by default. I have found below function. However, there is no detailed

Re: [openssl-users] Decrypting an OpenSSL encrypt AES256-CBC data

2018-12-28 Thread Michael Wojcik
> From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of > Ertan Küçükoglu > Sent: Thursday, December 27, 2018 16:03 > A- I tried to directly decrypt (no padding applied) and I get my plain text > plus > some additional invisible characters at the end. I am told it maybe a

[openssl-users] Decrypting an OpenSSL encrypt AES256-CBC data

2018-12-27 Thread Ertan Küçükoglu
Hello, First of all I am a newbie to this list and to cryptography, padding, and C language. Please, bear with me. I am trying to encrypt some data on an embedded Linux system using OpenSSL crypto library and decrypt it on a Windows system. I am following example at following link for C codes