aboutsummaryrefslogtreecommitdiff
path: root/crypto/asn1/p8_pkey.c
AgeCommit message (Collapse)AuthorFilesLines
2016-03-07Make PKCS8_PRIV_KEY_INFO opaque.Dr. Stephen Henson1-40/+24
Make PKCS8_PRIV_KEY_INFO opaque. Several accessor functions already exist for this structure. Two new ones were added to handle attributes. The old handling of broken formats has been removed and the corresponding structures simplified. 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>
2015-11-09Continue standardising malloc style for libcryptoMatt Caswell1-1/+1
Continuing from previous commit ensure our style is consistent for malloc return checks. Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2015-05-14Identify and move common internal libcrypto header filesRichard Levitte1-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>
2015-02-03Check PKCS#8 pkey field is valid before cleansing.Dr. Stephen Henson1-1/+2
PR:3683 Reviewed-by: Tim Hudson <tjh@openssl.org>
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell1-82/+71
Reviewed-by: Tim Hudson <tjh@openssl.org>
2008-11-05Update obsolete email address...Dr. Stephen Henson1-1/+1
2006-03-20Initial support for pluggable public key ASN1 support. Process most publicDr. Stephen Henson1-0/+70
key ASN1 handling through a single EVP_PKEY_ASN1_METHOD structure and move the spaghetti algorithm specific code to a single ASN1 module for each algorithm.
2005-09-01Extend callback function to support print customization.Dr. Stephen Henson1-2/+3
2002-11-28Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte1-2/+2
I've covered all the memset()s I felt safe modifying, but may have missed some.
2001-02-23Get rid of ASN1_ITEM_FUNCTIONS dummy functionDr. Stephen Henson1-1/+1
prototype hack. This unfortunately means that every ASN1_*_END construct cannot have a trailing ;
2000-12-08Merge from the ASN1 branch of new ASN1 codeDr. Stephen Henson1-61/+18
to main trunk. Lets see if the makes it to openssl-cvs :-)
2000-06-01There have been a number of complaints from a number of sources that namesRichard Levitte1-1/+1
like Malloc, Realloc and especially Free conflict with already existing names on some operating systems or other packages. That is reason enough to change the names of the OpenSSL memory allocation macros to something that has a better chance of being unique, like prepending them with OPENSSL_. This change includes all the name changes needed throughout all C files.
2000-02-05Add support for some broken PKCS#8 formats.Dr. Stephen Henson1-2/+0
1999-10-20Replace the macros in asn1.h with function equivalents. Also make UTF8StringsDr. Stephen Henson1-2/+2
tolerated in certificates.
1999-07-21Torture weak compilers less by not automatically including x509.h whereBodo Möller1-0/+1
it is not needed.
1999-05-30Another stack.Ben Laurie1-6/+9
1999-04-26Remove NOPROTO definitions and error code comments.Ulf Möller1-5/+0
1999-04-23Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1-1/+1
Submitted by: Reviewed by: PR:
1999-04-19Change functions to ANSI C.Ulf Möller1-10/+5
1999-03-28Further PKCS#12 integration, PBE, PKCS#8 additions.Dr. Stephen Henson1-0/+135