aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/store
Commit message (Collapse)AuthorAgeFilesLines
* remove malloc castsRich Salz2015-04-283-6/+4
| | | | | | | Following ANSI C rules, remove the casts from calls to OPENSSL_malloc and OPENSSL_realloc. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Remove EXHEADER, TEST, APPS, links:, install: and uninstall: where relevantRichard Levitte2015-03-311-19/+1
| | | | | | | | | | | | With no more symlinks, there's no need for those variables, or the links target. This also goes for all install: and uninstall: targets that do nothing but copy $(EXHEADER) files, since that's now taken care of by the top Makefile. Also, removed METHTEST from test/Makefile. It looks like an old test that's forgotten... Reviewed-by: Rich Salz <rsalz@openssl.org>
* Stop symlinking, move files to intended directoryRichard Levitte2015-03-311-658/+0
| | | | | | | | | | | | | Rather than making include/openssl/foo.h a symlink to crypto/foo/foo.h, this change moves the file to include/openssl/foo.h once and for all. Likewise, move crypto/foo/footest.c to test/footest.c, instead of symlinking it there. Originally-by: Geoff Thorpe <geoff@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* util/mkstack.pl now generates entire safestack.hRich Salz2015-02-061-2/+0
| | | | | | | | | The mkstack.pl script now generates the entire safestack.h file. It generates output that follows the coding style. Also, removed all instances of the obsolete IMPLEMENT_STACK_OF macro. Reviewed-by: Andy Polyakov <appro@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-226-2589/+2713
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* indent has problems with comments that are on the right hand side of a line.Matt Caswell2015-01-221-14/+27
| | | | | | | Sometimes it fails to format them very well, and sometimes it corrupts them! This commit moves some particularly problematic ones. Reviewed-by: Tim Hudson <tjh@openssl.org>
* Change all instances of OPENSSL_NO_DEPRECATED to OPENSSL_USE_DEPRECATEDMatt Caswell2014-12-181-1/+1
| | | | | | Introduce use of DECLARE_DEPRECATED Reviewed-by: Rich Salz <rsalz@openssl.org>
* Remove fipscanister build functionality from makefiles.Dr. Stephen Henson2014-12-081-1/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Remove all .cvsignore filesRich Salz2014-11-281-4/+0
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Add explanatory note to crypto/store/READMERich Salz2014-08-311-0/+6
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Change AR to ARX to allow exclusion of fips object modulesDr. Stephen Henson2011-01-261-1/+1
|
* Make it possible to disable STORE.Richard Levitte2009-02-191-0/+6
|
* Reference bug.Richard Levitte2009-02-191-2/+2
|
* Remove extraneous semicolonsRichard Levitte2008-12-161-2/+2
|
* More type-checking.Ben Laurie2008-06-043-28/+41
|
* Typo in str_lib.cAndy Polyakov2007-07-071-1/+1
| | | | PR: 1177
* Update from 0.9.8 stable. Eliminate duplicate error codes.Dr. Stephen Henson2006-11-211-7/+4
|
* add additional checks + cleanupNils Larsch2006-01-291-1/+3
| | | | Submitted by: David Hartman <david_hartman@symantec.com>
* Wrap the inclusion of openssl/engine.h with a protective check forRichard Levitte2005-06-231-0/+2
| | | | | | the absence of OPENSSL_NO_ENGINE. PR: 1123
* Further BUILDENV refinement, further fool-proofing of Makefiles andAndy Polyakov2005-05-161-2/+1
| | | | | [most importantly] put back dependencies accidentaly eliminated in check-in #13342.
* Fool-proofing MakefilesAndy Polyakov2005-05-151-4/+1
|
* Fix more error codes.Bodo Möller2005-05-114-41/+49
| | | | | (Also improve util/ck_errf.pl script, and occasionally fix source code formatting.)
* Rebuild error codes.Dr. Stephen Henson2005-04-121-117/+121
|
* Add emacs cache files to .cvsignore.Richard Levitte2005-04-111-0/+2
|
* Blow away Makefile.ssl.Ben Laurie2005-03-301-4/+3
|
* Don't use $(EXHEADER) directly in for loops, as most shells will breakRichard Levitte2004-11-021-1/+1
| | | | | | if $(EXHEADER) is empty. Notified by many, solution suggested by Carson Gaspar <carson@taltos.org>
* After the latest round of header-hacking, regenerate the dependencies inGeoff Thorpe2004-05-171-36/+17
| | | | | the Makefiles. NB: this commit is probably going to generate a huge posting and it is highly uninteresting to read.
* Deprecate some recursive includes from the store.h API header, and put backGeoff Thorpe2004-05-173-1/+6
| | | | required includes back via the internal header and str_lib.c.
* make updateGeoff Thorpe2004-04-191-27/+20
|
* Reduce header interdependencies, initially in engine.h (the rest of theGeoff Thorpe2004-04-191-9/+4
| | | | | | | | | 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.
* Implement missing functions.Richard Levitte2003-06-265-9/+196
| | | | | | Have the f parameter to _ctrl functions have the prototype (*)(void) rather than (*)(), for the sake of C++ compilers. Disable unimplemented functionality.
* Add the application data type to the README.Richard Levitte2003-06-181-0/+1
|
* Missing string and potential memory leaks.Richard Levitte2003-06-181-14/+22
| | | | Notified by Goetz Babin-Ebell <goetz@shomitefo.de>
* Slightly better check of attributes. Now, mem_list_next can actually stop ↵Richard Levitte2003-06-123-12/+90
| | | | when the searched for key doesn't have it's attributes within the range of the checked key.
* BeautifyRichard Levitte2003-06-121-2/+2
|
* Remove extra ;Richard Levitte2003-06-042-2/+2
|
* I have no idea how I cut away that piece of text...Richard Levitte2003-05-211-1/+5
|
* I don't remember what my thinking was with str_compat.h. Maybe it'llRichard Levitte2003-05-201-1/+2
| | | | come back to me...
* Misspelled functions.Richard Levitte2003-05-201-6/+6
|
* Some misspelled function names.Richard Levitte2003-05-201-10/+6
|
* Make the function STORE_new_engine() public.Richard Levitte2003-05-191-0/+1
|
* Define the two authentication parameter types for passphrase andRichard Levitte2003-05-071-1/+3
| | | | Kerberos 5 authentications.
* Add the possibility to hand execution parameters (for exampleRichard Levitte2003-05-073-122/+199
| | | | | authentication material) to the STORE functions. Suggested by Götz Babin-Ebell <babin-ebell@trustcenter.de>.
* Add the possibility to store arbitrary data in a STORE.Richard Levitte2003-05-063-9/+103
| | | | Suggested by Götz Babin-Ebell <babin-ebell@trustcenter.de>.
* It's usually best if the function name matches everywhere...Richard Levitte2003-05-021-1/+1
|
* STORE was created 2003, darnit!Richard Levitte2003-05-012-2/+2
|
* Provide some extra comments about the STORE_Memory STORE method.Richard Levitte2003-05-011-2/+25
|
* make updateRichard Levitte2003-05-013-10/+21
|
* Define a STORE type. For documentation, read the entry in CHANGES,Richard Levitte2003-05-019-0/+3064
crypto/store/README, crypto/store/store.h and crypto/store/str_locl.h.