aboutsummaryrefslogtreecommitdiff
path: root/crypto/ec/ecdsa_sign.c
AgeCommit message (Collapse)AuthorFilesLines
2016-06-18Useless includesFdaSilvaYY1-2/+0
Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1168)
2016-05-17Copyright consolidation 05/10Rich Salz1-51/+6
Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-03-20Remove #error from include files.Rich Salz1-3/+1
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>
2016-01-26Remove /* foo.c */ commentsRich Salz1-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>
2015-12-09Use NULL comparisonDr. Stephen Henson1-3/+3
Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-12-09Top level ECDSA sign/verify redirection.Dr. Stephen Henson1-12/+6
Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-12-09return errors for unsupported operationsDr. Stephen Henson1-1/+4
Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-12-09Move and adapt ECDSA sign and verify functions.Dr. Stephen Henson1-0/+105
Reviewed-by: Richard Levitte <levitte@openssl.org>