aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove references to deleted fips directory from Makefile.orgDr. Stephen Henson2014-12-081-4/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Remove FIPSCANISTERINTERNAL reference.Dr. Stephen Henson2014-12-081-1/+0
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Remove fipscanister build functionality from makefiles.Dr. Stephen Henson2014-12-081-27/+7
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Configure: add configuration for crypto/ec/asm extensions.Andy Polyakov2014-08-301-3/+4
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* RT2820: case-insensitive filenames on DarwinRich Salz2014-08-301-2/+2
| | | | | | Andy pointed out there is also darwin64, so tweak the pattern. Reviewed-by: Andy Polyakov <appro@openssl.org>
* RT2880: HFS is case-insensitive filenamesJim Reid2014-08-291-1/+5
| | | | | | | | Add Darwin to list of case-insensitive filenames when installing manapges. When doing this, I noticed that we weren't setting "filecase" for the HTML doc install. Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
* Add tags/TAGS target; rm tags/TAGS in cleanRich Salz2014-08-261-4/+7
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* RT1665: Fix podpath to get xref's rightMatt Caswell2014-08-131-1/+1
| | | | | | | | In Makefile, when build manpages, put the current directory at the start of the podpath so that cross-refs find the local directory first. Reviewed-by: Tim Hudson <tjh@cryptosoft.com>
* Revert "RT 2820: Case-insensitive filenames on Darwin"Rich Salz2014-08-121-1/+1
| | | | This reverts commit 691edc997a35682eb7fa29445036182d2c9eb1de.
* RT 2820: Case-insensitive filenames on DarwinJim Reid2014-08-111-1/+1
| | | | | | Add darwin-*-cc as one of the systems for case-insensitive filenames. Fixes the manpage install so it doesn't create looping symlinks.
* Have the .pc files depend on each other rather than duplicating theMike Frysinger2014-05-121-7/+4
| | | | various link settings. PR#3332
* Makefile.org: fix syntax error on Solaris.Andy Polyakov2014-02-281-5/+5
| | | | PR: 3271
* Add quotes as CC can contain spaces.Dr. Stephen Henson2014-02-031-1/+1
| | | | PR#3253
* Makfile.org: make FIPS build work with BSD make.Andy Polyakov2013-11-101-1/+1
|
* Add support for Cygwin-x86_64.Andy Polyakov2013-09-151-4/+4
| | | | | PR: 3110 Submitted by Corinna Vinschen.
* Make openssl verify return errors.Ben Laurie2012-12-111-1/+1
|
* check correctness of errors before updating them so we don't get bogus ↵Dr. Stephen Henson2012-04-221-1/+1
| | | | errors added
* Makefile.org: clear yet another environment variable.Andy Polyakov2012-04-191-1/+1
| | | | PR: 2793
* PR: 2713Dr. Stephen Henson2012-02-121-3/+6
| | | | | | | Submitted by: Tomas Mraz <tmraz@redhat.com> Move libraries that are not needed for dynamic linking to Libs.private in the .pc files
* Makefile.org: proper libclean on MacOS X.Andy Polyakov2011-11-121-1/+1
|
* Padlock engine: make it independent of inline assembler.Andy Polyakov2011-09-061-1/+3
|
* Makefile.org: get commit#21249 right.Andy Polyakov2011-08-161-1/+1
|
* Delete library install from Makefile.fips: it isn't used.Dr. Stephen Henson2011-08-151-1/+1
| | | | Revert change to Makefile.org: it breaks install.
* quote LIBS to copy with empty stringDr. Stephen Henson2011-08-151-1/+1
|
* add null cipher to FIPS moduleDr. Stephen Henson2011-06-201-0/+1
|
* Add DSA and ECDSA "clone digests" to module for compatibility with oldDr. Stephen Henson2011-06-011-0/+3
| | | | applications.
* Remove FIXME comments.Dr. Stephen Henson2011-05-071-3/+0
|
* Initial untested CCM support via EVP.Dr. Stephen Henson2011-04-181-0/+1
|
* Use consistent FIPS tarball name.Dr. Stephen Henson2011-04-121-0/+1
| | | | | | Add XTS to FIPS build. Hide XTS symbol names.
* Remove rand files from fipscanister.oDr. Stephen Henson2011-04-061-7/+0
|
* Use environment when builds libcrypto shared library so CC value is picked upDr. Stephen Henson2011-04-041-1/+1
| | | | in FIPS builds.
* Implement FIPS CMAC.Richard Levitte2011-03-241-0/+1
| | | | | | | | | | | * fips/cmac/*: Implement the basis for FIPS CMAC, using FIPS HMAC as an example. * crypto/cmac/cmac.c: Enable the FIPS API. Change to use M_EVP macros where possible. * crypto/evp/evp.h: (some of the macros get added with this change) * fips/fips.h, fips/utl/fips_enc.c: Add a few needed functions and use macros to have cmac.c use these functions. * Makefile.org, fips/Makefile, fips/fips.c: Hook it in.
* Add SRP support.Ben Laurie2011-03-121-1/+1
|
* Add ECDH to validated module.Dr. Stephen Henson2011-03-091-0/+2
|
* Create fips links even if not compiling in fips mode.Dr. Stephen Henson2011-02-211-0/+3
|
* Make -DOPENSSL_FIPSSYMS work for assembly language builds.Dr. Stephen Henson2011-02-171-2/+7
|
* Add ECDSA functionality to fips module. Initial very incomplete versionDr. Stephen Henson2011-02-141-0/+13
| | | | of algorithm test program.
* Remove dependency of dsa_sign.o and dsa_vrf.o: new functions FIPS_dsa_sig_newDr. Stephen Henson2011-02-131-2/+0
| | | | | and FIPS_dsa_sig_free, reimplment DSA_SIG_new and DSA_SIG_free from ASN1 library.
* Link GCM into FIPS module. Check return value in EVP gcm.Dr. Stephen Henson2011-02-081-1/+2
|
* Use single X931 key generation source file for FIPS and non-FIPS builds.Dr. Stephen Henson2011-02-031-0/+1
|
* Make no-asm work in fips mode. Add android platform.Dr. Stephen Henson2011-02-021-0/+1
|
* Fix shared build for fipsDr. Stephen Henson2011-01-301-1/+5
|
* typoDr. Stephen Henson2011-01-291-1/+1
|
* Redirect FIPS memory allocation to FIPS_malloc() routine, removeDr. Stephen Henson2011-01-271-1/+0
| | | | OpenSSL malloc dependencies.
* Include thread ID code in fips module.Dr. Stephen Henson2011-01-271-0/+1
|
* Add fipscanisterbuild configuration option and update Makefile.org: doesn't ↵Dr. Stephen Henson2011-01-261-3/+112
| | | | compile yet
* Take gcm128.c and ghash assembler modules into the build loop.Andy Polyakov2010-04-221-0/+2
|
* Initial experimental CMAC implementation.Dr. Stephen Henson2010-02-071-1/+1
|
* Some shells print out the directory name if CDPATH is set breaking theDr. Stephen Henson2010-01-271-1/+1
| | | | pod2man test. Use ./util instead to avoid this.
* PR: 2135Dr. Stephen Henson2010-01-161-1/+1
| | | | | | Submitted by: Mike Frysinger <vapier@gentoo.org> Change missed references to lib to $(LIBDIR)