Re: [openssl-dev] Linker error when adding new cipher in crypto folder

2017-01-10 Thread Schmicker, Robert
ion if no arguments are being passed) 3) edit Configure (line 313ish) and add in crypto function amongst others 4) create build.info<http://build.info/> under /crypto/mycipher/ (follow other crypto build.info<http://build.info>’s to create) 5) ./config 6) make update 7) make -j R

Re: [openssl-dev] Linker error when adding new cipher in crypto folder

2016-12-30 Thread Richard Levitte
In message on Fri, 30 Dec 2016 02:36:45 +, "Schmicker, Robert" said: rschm2> Hello, rschm2> rschm2> I am attempting to add a new cipher into the crypto library. I have rschm2> done the following so far…

Re: [openssl-dev] Linker error when adding new cipher in crypto folder

2016-12-29 Thread Viktor Dukhovni
> On Dec 29, 2016, at 9:36 PM, Schmicker, Robert > wrote: > > However, as soon as I make a call to my cipher in test.c I get a linker error > and gcc is unable to find any of my functions. Edit util/libcrypto.num and/or util/libssl.num, only the symbols listed there

[openssl-dev] Linker error when adding new cipher in crypto folder

2016-12-29 Thread Schmicker, Robert
Hello, I am attempting to add a new cipher into the crypto library. I have done the following so far… 1. Added my code to the openssl/crypto folder 2. Created a build.info for make to compile my code (created this based off of openssl/crypto/dh’s