aboutsummaryrefslogtreecommitdiff
path: root/crypto/evp/p_sign.c
AgeCommit message (Collapse)AuthorFilesLines
2015-01-24ifdef cleanup, part 4a: '#ifdef undef'Rich Salz1-12/+0
This removes all code surrounded by '#ifdef undef' One case is left: memmove() replaced by open-coded for loop, in crypto/stack/stack.c That needs further review. Also removed a couple of instances of /* dead code */ if I saw them while doing the main removal. Reviewed-by: Matt Caswell <matt@openssl.org>
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell1-82/+73
Reviewed-by: Tim Hudson <tjh@openssl.org>
2013-11-13Flag to disable automatic copying of contexts.Dr. Stephen Henson1-9/+19
Some functions such as EVP_VerifyFinal only finalise a copy of the passed context in case an application wants to digest more data. Doing this when it is not needed is inefficient and many applications don't require it. For compatibility the default is to still finalise a copy unless the flag EVP_MD_CTX_FLAG_FINALISE is set in which case the passed context is finalised an *no* further data can be digested after finalisation.
2010-11-27Some of the MS_STATIC use in crypto/evp is a legacy from the days whenDr. Stephen Henson1-1/+1
EVP_MD_CTX was much larger: it isn't needed anymore.
2010-02-28Fix warnings (note that gcc 4.2 has a bug that makes one of itsBen Laurie1-2/+2
warnings hard to fix without major surgery).
2009-09-23Audit libcrypto for unchecked return values: fix all cases enounteredDr. Stephen Henson1-2/+4
2006-05-24Fix warnings.Dr. Stephen Henson1-1/+1
2006-04-19Remove link between digests and signature algorithms.Dr. Stephen Henson1-0/+23
Use cross reference table in ASN1_item_sign(), ASN1_item_verify() to eliminate the need for algorithm specific code.
2001-10-16Retain compatibility of EVP_DigestInit() and EVP_DigestFinal()Dr. Stephen Henson1-3/+3
with existing code. Modify library to use digest *_ex() functions.
2001-07-30Really add the EVP and all of the DES changes.Ben Laurie1-0/+2
1999-04-23Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1-3/+3
Submitted by: Reviewed by: PR:
1999-04-19Change functions to ANSI C.Ulf Möller1-12/+5
1999-01-31Add new function, EVP_MD_CTX_copy() to replace frequent use of memcpy.Mark J. Cox1-1/+1
Submitted by: Eric A Young - from changes to C2Net SSLeay Reviewed by: Mark Cox PR:
1998-12-21Import of old SSLeay release: SSLeay 0.9.0bRalf S. Engelschall1-2/+4
1998-12-21Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1-0/+117