aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/err/err_all.c
Commit message (Collapse)AuthorAgeFilesLines
* Clean up references to FIPSEmilia Kasper2017-02-281-9/+0
| | | | | | | | | | | This removes the fips configure option. This option is broken as the required FIPS code is not available. FIPS_mode() and FIPS_mode_set() are retained for compatibility, but FIPS_mode() always returns 0, and FIPS_mode_set() can only be used to turn FIPS mode off. Reviewed-by: Stephen Henson <steve@openssl.org>
* Check for errors allocating the error strings.Kurt Roeckx2016-07-201-33/+37
| | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> GH: #1330
* Copyright consolidation 05/10Rich Salz2016-05-171-54/+6
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Need err_load_crypto_strings_int declared.Rich Salz2016-04-131-1/+1
| | | | Reviewed-by: Matt Caswell <matt@openssl.org>
* Rename int_*() functions to *_int()Matt Caswell2016-04-131-1/+1
| | | | | | | | | | There is a preference for suffixes to indicate that a function is internal rather than prefixes. Note: the suffix is only required to disambiguate internal functions and public symbols with the same name (but different case) Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
* Rename lots of *_intern or *_internal function to int_*Matt Caswell2016-04-131-1/+1
| | | | | | | | There was a lot of naming inconsistency, so we try and standardise on one form. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
* Fix no-ocspMatt Caswell2016-04-061-0/+2
| | | | | | Misc fixes for no-ocsp Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fix "no-ui" configurationRichard Levitte2016-03-311-0/+2
| | | | Reviewed-by: Matt Caswell <matt@openssl.org>
* Move dso.h to internalRich Salz2016-03-231-1/+1
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Remove #error from include files.Rich Salz2016-03-201-24/+8
| | | | | | | | Don't have #error statements in header files, but instead wrap the contents of that file in #ifndef OPENSSL_NO_xxx This means it is now always safe to include the header file. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Implement support for no-tsRichard Levitte2016-03-181-0/+2
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add KDF error codesDr. Stephen Henson2016-03-021-0/+2
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Public API for Certificate TransparencyRob Percival2016-02-261-1/+3
| | | | | Reviewed-by: Ben Laurie <ben@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Remove JPAKERich Salz2016-02-171-6/+0
| | | | Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
* Auto init/deinit libcryptoMatt Caswell2016-02-091-1/+2
| | | | | | | This builds on the previous commit to auto initialise/deinitialise libcrypto. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Remove /* foo.c */ commentsRich Salz2016-01-261-1/+0
| | | | | | | | | | | | This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
* remove ecdsa.h header references.Dr. Stephen Henson2015-12-091-3/+0
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* remove errorsDr. Stephen Henson2015-12-091-1/+0
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* remove ecdh.h headerDr. Stephen Henson2015-12-091-1/+0
| | | | | | Remove redundant ecdh.h header and any references to it. Reviewed-by: Richard Levitte <levitte@openssl.org>
* remove ECDH error loadingDr. Stephen Henson2015-12-091-1/+0
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Add ASYNC error codesMatt Caswell2015-11-201-0/+2
| | | | | | | Add ASYNCerr support to give some meaningful error message in the event of a failure. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Don't forget to load the CT error stringsRichard Levitte2015-10-211-0/+4
| | | | Reviewed-by: Matt Caswell <matt@openssl.org>
* Merge OPENSSL_NO_EC{DH,DSA} into OPENSSL_NO_ECRich Salz2015-03-111-7/+1
| | | | | | Suggested by John Foley <foleyj@cisco.com>. Reviewed-by: Matt Caswell <matt@openssl.org>
* OPENSSL_NO_xxx cleanup: many removalsRich Salz2015-01-271-2/+0
| | | | | | | | | | | | The following compile options (#ifdef's) are removed: OPENSSL_NO_BIO OPENSSL_NO_BUFFER OPENSSL_NO_CHAIN_VERIFY OPENSSL_NO_EVP OPENSSL_NO_FIPS_ERR OPENSSL_NO_HASH_COMP OPENSSL_NO_LHASH OPENSSL_NO_OBJECT OPENSSL_NO_SPEED OPENSSL_NO_STACK OPENSSL_NO_X509 OPENSSL_NO_X509_VERIFY This diff is big because of updating the indents on preprocessor lines. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-74/+74
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Don't include comp.h if no-comp set.Dr. Stephen Henson2013-01-201-1/+2
|
* make no-comp compileDr. Stephen Henson2012-12-301-1/+2
|
* Include fips header file in err_all.c if needed.Dr. Stephen Henson2011-02-031-0/+3
|
* Add FIPS error codes.Dr. Stephen Henson2011-02-031-0/+3
|
* FIPS mode ERR changes. Redirect errors to tiny FIPS callbacks to avoid ERRDr. Stephen Henson2011-01-261-0/+5
| | | | library dependencies.
* Add COMP error strings.Dr. Stephen Henson2009-08-091-0/+2
|
* Update from stable-branch.Dr. Stephen Henson2008-11-241-2/+2
|
* Update from stable branch.Dr. Stephen Henson2008-11-121-1/+4
|
* Add JPAKE.Ben Laurie2008-10-261-0/+3
|
* And so it begins...Dr. Stephen Henson2008-03-121-0/+8
| | | | | | | | | | Initial support for CMS. Add zlib compression BIO. Add AES key wrap implementation. Generalize S/MIME MIME code to support CMS and/or PKCS7.
* Update from 0.9.7-stable branch.Dr. Stephen Henson2006-12-071-4/+0
|
* RFC 3161 compliant time stamp request creation, response generationUlf Möller2006-02-121-0/+2
| | | | | | | and response verification. Submitted by: Zoltan Glozik <zglozik@opentsa.org> Reviewed by: Ulf Moeller
* Reduce header interdependencies, initially in engine.h (the rest of theGeoff Thorpe2004-04-191-0/+1
| | | | | | | | | changes are the fallout). As this could break source code that doesn't directly include headers for interfaces it uses, changes to recursive includes are covered by the OPENSSL_NO_DEPRECATED symbol. It's better to define this when building and using openssl, and then adapt code where necessary - this is how to stay current. However the mechanism exists for the lethargic.
* Add the possibility to build without the ENGINE framework.Richard Levitte2003-01-301-0/+4
| | | | PR: 287
* update error library for EC... changesBodo Möller2003-01-151-0/+12
| | | | Submitted by: Nils Larsch
* Include the UI error strings.Richard Levitte2001-06-231-0/+1
|
* Fixes to make 'no-ec' work (it should not turn 'objects' into 'objts' for ↵Bodo Möller2001-03-081-0/+4
| | | | example)
* Sort openssl.ec, the configuration file for mkerr.pl.Bodo Möller2001-03-081-1/+2
| | | | | Change mkerr.pl so that it puts the ERR_load_..._strings() prototype in header files that it writes.
* Order ERR_load_... calls like the stuff in err.h.Bodo Möller2001-03-081-18/+13
|
* Make all configuration macros available for application by makingRichard Levitte2001-02-191-7/+7
| | | | | | | | | | | | sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
* Fix typo in OCSP nonce extension.Dr. Stephen Henson2001-01-041-0/+2
| | | | | | | | | | | | Set correct type in ASN1_STRING for INTEGER and ENUMERATED types. Make ASN1_INTEGER_get() and ASN1_ENUMERATED_get() return -1 for invalid type rather than 0 (which is often valid). -1 may also be valid but this is less likely. Load OCSP error strings in ERR_load_crypto_strings().
* Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte2000-11-081-2/+2
| | | | away now...
* Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte2000-10-261-1/+3
| | | | At the same time, add VMS support for Rijndael.
* This commit ties the new DSO code (crypto/dso/) into the build for aGeoff Thorpe2000-04-041-0/+2
| | | | | | | | | | | | | | | | | | | | | variety of platforms. A few are missing, and they will be added in eventually, but as this is new stuff, it was better to not break lots of platforms in one go that we can't easily test. The changes to "Configure" should illustrate how to add support to other systems if you feel like having a go. NB: I'll add something shortly to allow you to add "dlfcn.h" support on those platforms that don't have (or need) a dlfcn.h header file. (The symbol for Configure will probably by "dlfcn_no_h"). Thanks to Richard Levitte, who is responsible for the dso_dl.c support, understanding the trickier aspects of the build process, and giving great feedback on everything else. [Don't use this stuff if you're easily offended by changes to the interface or behaviour - it's still work in progress.] PR:
* Avoid some warnings, and run "make update".Bodo Möller2000-01-141-0/+1
|