Re: [openssl-dev] Openssl apps linker errors after adding new cipher

2016-07-13 Thread Wang Hao Lee
Hi Benjamin Great advice. After adding the symbol EVP_myciph to openssl.ld linker script. It compiled without problems. Cheers! Regards Wang Hao On Tue, Jul 12, 2016 at 7:06 AM, Benjamin Kaduk wrote: > On 07/10/2016 09:13 PM, Wang Hao Lee wrote: > > > After I changed these

Re: [openssl-dev] Openssl apps linker errors after adding new cipher

2016-07-11 Thread Benjamin Kaduk
On 07/10/2016 09:13 PM, Wang Hao Lee wrote: > > After I changed these files. Compiling using ./config fips; make > depend; make was successful and the apps can link nicely. I > even manage to test my cipher via the EVP interface: openssl speed > -evp mynewcipher. > > However, when I build by

[openssl-dev] Openssl apps linker errors after adding new cipher

2016-07-10 Thread Wang Hao Lee
Dear all, I'm pretty new to this mailing list so please be easy on me :) I have integrated a custom 256bit symmetric cipher into OpenSSL 1.0.2g (the ubuntu version); and now i'm facing linker errors building openssl apps. My new cipher is called MYCIPH or myciph. The format for the modifications