Re: recover old files after key deprecations in openssl3

2022-11-20 Thread Bhasker C V
Thanks Dan, i did that anyway. I compiled 1.1 and decrypted and re-encrypted them. My data is back. I didnt know that there is such backward compatibility issues with 3.x On Fri, Oct 28, 2022 at 12:16 PM Dan Ritter wrote: > Bhasker C V wrote: > > Hi, > > > > > > Could someone help me please on

Re: recover old files after key deprecations in openssl3

2022-10-28 Thread Dan Ritter
Bhasker C V wrote: > Hi, > > >  Could someone help me please on how do I go about migrating data of mine > from old SSL encryption > >  For instance > > > OPENSSL 1.1 (on a old system) > > $ echo hai | openssl bf-cbc -md md5 > hello.txt > > and then in > > OPENSSL 3 > > $ cat hello.txt  |

recover old files after key deprecations in openssl3

2022-10-27 Thread Bhasker C V
Hi,  Could someone help me please on how do I go about migrating data of mine from old SSL encryption  For instance OPENSSL 1.1 (on a old system) $ echo hai | openssl bf-cbc -md md5 > hello.txt and then in OPENSSL 3 $ cat hello.txt  | openssl bf-cbc  -md md5 -d -provider legacy enter BF