aboutsummaryrefslogtreecommitdiff
path: root/include/openssl/obj_mac.h
AgeCommit message (Collapse)AuthorFilesLines
2016-02-02RT2353: Add ipsec IKE OIDRich Salz1-0/+5
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
2016-01-27Complete the removal of /* foo.c */ commentsRichard Levitte1-1/+0
Some files that are automatically generated still had those comments added by the generating scripts. Reviewed-by: Rich Salz <rsalz@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>
2016-01-19Add TLS PRF method.Dr. Stephen Henson1-0/+4
Add EVP_PKEY algorithm for TLS1 PRF. Reviewed-by: Matt Caswell <matt@openssl.org>
2015-12-10Support the TLS Feature (aka Must Staple) X.509v3 extension (RFC7633).Rob Stradling1-0/+5
Signed-off-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Dr. Stephen Henson <steve@openssl.org> GH: #495, MR: #1435
2015-12-10Add ChaCha20-Poly1305 and ChaCha20 NIDs.Andy Polyakov1-0/+8
Reviewed-by: Richard Levitte <levitte@openssl.org>
2015-10-05New cipher and cipher modes standardized in RussiaDmitry Belyavskiy1-0/+27
This change introduces short names and NIDs for Russian GOST ciphers according to GOST R 34.13-2015 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
2015-08-17Add new GOST OIDsDmitry Belyavsky1-0/+155
Add new OIDs for latest GOST updates Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
2015-05-21Add scrypt OID from draft-josefsson-scrypt-kdf-03Dr. Stephen Henson1-0/+4
Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-05-05make updateRichard Levitte1-5/+0
Reviewed-by: Matt Caswell <matt@openssl.org>
2015-05-03fix various typo'sRich Salz1-1/+1
https://github.com/openssl/openssl/pull/176 (CHANGES) https://rt.openssl.org/Ticket/Display.html?id=3545 (objects.txt) https://rt.openssl.org/Ticket/Display.html?id=3796 (verify.pod) Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-03-31Stop symlinking, move files to intended directoryRichard Levitte1-0/+4271
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>