It's changed in recent OpenSSL.
1.1.0c the directories are in Configure.
# Top level directories to build
$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util",
"tools", "
fuzz" ];
# crypto/ subdirectories to build
$config{sdirs} = [
"objects",
"md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool",
"poly1305"
, "blake2",
"des", "aes", "rc2", "rc4", "rc5", "idea", "bf", "cast", "camellia",
"seed",
"chacha", "modes",
"bn", "ec", "rsa", "dsa", "dh", "dso", "engine",
"buffer", "bio", "stack", "lhash", "rand", "err",
"evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7",
"pkcs12",
"comp", "ocsp", "ui",
"cms", "ts", "srp", "cmac", "ct", "async", "kdf", "sha3" <==== Added
sha3 to the list
];
Persist, it can be done but there was quite a bit of trial and error
before I got it working.
Peter
From: "Wei, Changzheng" <[email protected]>
To: "[email protected]" <[email protected]>
Date: 23/12/2016 10:41
Subject: Re: [openssl-dev] Add a new algorithm in "crypto" dir, how
to add the source code into the build system
Sent by: "openssl-dev" <[email protected]>
Hi
Thanks for your reply.
My question is that, I add a new subdir(named abc) in openssl/crypto/abc,
and implement codes , Makefile and build.info in the crypt/abc directory,
but when I re-build OpenSSL, I found that this new added sub dir is not
involved into the build system, any source file in this subdir is not
compiled. So I want to know how to compile these new added files in
OpenSSL build system.
Thanks
From: openssl-dev [mailto:[email protected]] On Behalf Of
Short, Todd
Sent: Friday, December 23, 2016 5:14 AM
To: [email protected]
Subject: Re: [openssl-dev] Add a new algorithm in "crypto" dir, how to add
the source code into the build system
Easiest way is to fork the OpenSSL Github repo and then clone it down to
your local machine where you can do the work locally. Once you are happy,
push it back up to your forked Github repo, and then make a pull request
back to the OpenSSL repo.
There are lots of places you can get information on git and Github; but
this list isn’t one of them.
--
-Todd Short
// [email protected]
// "One if by land, two if by sea, three if by the Internet."
On Dec 22, 2016, at 8:12 AM, Wei, Changzheng <[email protected]>
wrote:
Hi,
I want to implement some new algorithm. To make my future work smoothly, I
want to add a new algorithm method like “RSA_METHOD” in OpenSSL framework
so as to I can use an “engine” to support such algorithm.
So I add a new subdir in “crypto” and implement the code and build.info
refer to “crypto/rsa”.
My question is how to add my new source code into the build system?
Thanks in advance!
--
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
--
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
--
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev