- Fixed documentation typos..

This commit is contained in:
Paul Bakker 2009-04-01 19:01:43 +00:00
parent 619467aff8
commit 592457c0ad
2 changed files with 3 additions and 3 deletions

View file

@ -241,7 +241,7 @@ int rsa_private( rsa_context *ctx,
* *
* \param ctx RSA context * \param ctx RSA context
* \param mode RSA_PUBLIC or RSA_PRIVATE * \param mode RSA_PUBLIC or RSA_PRIVATE
* \param ilen contains the the plaintext length * \param ilen contains the plaintext length
* \param input buffer holding the data to be encrypted * \param input buffer holding the data to be encrypted
* \param output buffer that will hold the ciphertext * \param output buffer that will hold the ciphertext
* *

View file

@ -214,7 +214,7 @@ extern "C" {
* *
* \return 0 if successful, or a specific X509 error code * \return 0 if successful, or a specific X509 error code
*/ */
int x509parse_crt( x509_cert *crt, unsigned char *buf, int buflen ); int x509parse_crt( x509_cert *chain, unsigned char *buf, int buflen );
/** /**
* \brief Load one or more certificates and add them * \brief Load one or more certificates and add them
@ -225,7 +225,7 @@ int x509parse_crt( x509_cert *crt, unsigned char *buf, int buflen );
* *
* \return 0 if successful, or a specific X509 error code * \return 0 if successful, or a specific X509 error code
*/ */
int x509parse_crtfile( x509_cert *crt, char *path ); int x509parse_crtfile( x509_cert *chain, char *path );
/** /**
* \brief Parse a private RSA key * \brief Parse a private RSA key