aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/asn1/a_mbstr.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix unitialized warningsDr. Stephen Henson2009-10-041-1/+1
|
* Revert the size_t modifications from HEAD that had led to moreGeoff Thorpe2008-11-121-7/+7
| | | | | | knock-on work than expected - they've been extracted into a patch series that can be completed elsewhere, or in a different branch, before merging back to HEAD.
* Update obsolete email address...Dr. Stephen Henson2008-11-051-1/+1
|
* size_tification.Ben Laurie2008-11-011-7/+7
|
* Update util/ck_errf.pl script, and have it run automaticallyBodo Möller2005-05-091-10/+10
| | | | | | | | during "make errors" and thus during "make update". Fix lots of bugs that util/ck_errf.pl can detect automatically. Various others of these are still left to fix; that's why "make update" will complain loudly when run now.
* Use BUF_strlcpy() instead of strcpy().Richard Levitte2003-12-271-2/+2
| | | | | | | Use BUF_strlcat() instead of strcat(). Use BIO_snprintf() instead of sprintf(). In some cases, keep better track of buffer lengths. This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
* outlen should be int * in out_utf8.Dr. Stephen Henson2003-08-211-1/+1
|
* Marin Kraemer <Martin.Kraemer@MchP.Siemens.De> sent us patches to makeRichard Levitte2000-09-101-0/+7
| | | | the OpenSSL commands x50 and req work better on a EBCDIC system.
* New option to CA.pl to sign request using CA extensions.Dr. Stephen Henson2000-08-241-1/+4
| | | | | | | | | | | | | This allows intermediate CAs to be created more easily. PKCS12_create() now checks private key matches certificate. Fix typo in x509 app. Update docs. New function ASN1_STRING_to_UTF8() converts any ASN1_STRING type to UTF8.
* int may be smaller than 32 bits.Bodo Möller2000-06-051-2/+2
|
* There have been a number of complaints from a number of sources that namesRichard Levitte2000-06-011-2/+2
| | | | | | | | | 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.
* Finish off the X509_ATTRIBUTE string stuff.Dr. Stephen Henson2000-01-201-2/+2
|
* Initial automation changes to 'req' and X509_ATTRIBUTE functions.Dr. Stephen Henson2000-01-061-49/+1
|
* Allow additional information to be attached to aDr. Stephen Henson1999-11-041-1/+1
| | | | | certificate: currently this includes trust settings and a "friendly name".
* Continued multibyte character support.Dr. Stephen Henson1999-10-271-0/+29
| | | | | | | Add a bunch of functions to simplify the creation of X509_NAME structures. Change the X509_NAME_entry_add stuff in req/ca so it no longer uses X509_NAME_entry_count(): passing -1 has the same effect.
* More multibyte character support.Dr. Stephen Henson1999-10-251-8/+65
| | | | Functions to get keys from EVP_PKEY structures.
* Constification.Ben Laurie1999-10-231-4/+4
|
* Don't return stuff from void functions.Ben Laurie1999-10-231-2/+2
|
* New function ASN1_mbstring_copy() to handle ASN1 string copying. UltimatelyDr. Stephen Henson1999-10-211-0/+352
this will be used to clear up the horrible DN mess.