aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_null.c
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Adapt builtin cipher implementations to opaque EVP_CIPHERRichard Levitte2016-01-121-0/+1
| | | | | | | | They all stop including evp_locl.h, so we also take care of their adaptation to opaque EVP_CIPHER_CTX, as was promised in an earlier commit. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Identify and move common internal libcrypto header filesRichard Levitte2015-05-141-1/+1
| | | | | | | | | | | | | There are header files in crypto/ that are used by a number of crypto/ submodules. Move those to crypto/include/internal and adapt the affected source code and Makefiles. The header files that got moved are: crypto/cryptolib.h crypto/md32_common.h Reviewed-by: Rich Salz <rsalz@openssl.org>
* memset, memcpy, sizeof consistency fixesRich Salz2015-05-051-2/+1
| | | | | | | | Just as with the OPENSSL_malloc calls, consistently use sizeof(*ptr) for memset and memcpy. Remove needless casts for those functions. For memset, replace alternative forms of zero with 0. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-35/+34
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* remove FIPS module code from crypto/evpDr. Stephen Henson2014-12-081-2/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Version skew reduction: trivia (I hope).Ben Laurie2012-06-031-1/+0
|
* add null cipher to FIPS moduleDr. Stephen Henson2011-06-201-1/+1
|
* size_t-fy EVP_CIPHER. Note that being size_t-fied it doesn't requireAndy Polyakov2008-10-311-3/+3
| | | | | underlying cipher to be size_t-fied, it allows for size_t, signed and unsigned long. It maintains source and even binary compatibility.
* fix warnings when building openssl with the following compiler options:Nils Larsch2005-08-281-0/+1
| | | | | | | -Wmissing-prototypes -Wcomment -Wformat -Wimplicit -Wmain -Wmultichar -Wswitch -Wshadow -Wtrigraphs -Werror -Wchar-subscripts -Wstrict-prototypes -Wreturn-type -Wpointer-arith -W -Wunused -Wno-unused-parameter -Wuninitialized
* test, remove unnecessary const castNils Larsch2005-03-221-1/+1
|
* Really add the EVP and all of the DES changes.Ben Laurie2001-07-301-1/+1
|
* Change the EVP_somecipher() and EVP_somedigest()Dr. Stephen Henson2001-03-091-2/+2
| | | | | | | functions to return constant EVP_MD and EVP_CIPHER pointers. Update docs.
* EVP constification.Ben Laurie2000-06-031-6/+6
|
* Second phase of EVP cipher overhaul.Dr. Stephen Henson2000-05-271-4/+6
| | | | | | | Change functions like EVP_EncryptUpdate() so they now return a value. These normally have software only implementations which cannot fail so this was acceptable. However ciphers can be implemented in hardware and these could return errors.
* Beginnings of EVP cipher overhaul. This should eventuallyDr. Stephen Henson2000-05-261-0/+2
| | | | | | | | | | | | | | | enhance and tidy up the EVP interface. This patch adds initial support for variable length ciphers and changes S/MIME code to use this. Some other library functions need modifying to support use of modified cipher parameters. Also need to change all the cipher functions that should return error codes, but currenly don't. And of course it needs extensive testing...
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-261-6/+0
|
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-231-2/+2
| | | | | | Submitted by: Reviewed by: PR:
* Change functions to ANSI C.Ulf Möller1999-04-191-11/+5
|
* Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1998-12-211-1/+5
|
* Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1998-12-211-0/+105