1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Rename x509parse_key & co with _rsa suffix

This commit is contained in:
Manuel Pégourié-Gonnard
2013-06-27 10:51:01 +02:00
parent c8dc295e83
commit ba4878aa64
19 changed files with 122 additions and 120 deletions

View File

@ -427,9 +427,9 @@ int x509parse_crlfile( x509_crl *chain, const char *path );
*
* \return 0 if successful, or a specific X509 or PEM error code
*/
int x509parse_key( rsa_context *rsa,
const unsigned char *key, size_t keylen,
const unsigned char *pwd, size_t pwdlen );
int x509parse_key_rsa( rsa_context *rsa,
const unsigned char *key, size_t keylen,
const unsigned char *pwd, size_t pwdlen );
/** \ingroup x509_module */
/**
@ -441,8 +441,8 @@ int x509parse_key( rsa_context *rsa,
*
* \return 0 if successful, or a specific X509 or PEM error code
*/
int x509parse_keyfile( rsa_context *rsa, const char *path,
const char *password );
int x509parse_keyfile_rsa( rsa_context *rsa, const char *path,
const char *password );
/** \ingroup x509_module */
/**
@ -454,8 +454,8 @@ int x509parse_keyfile( rsa_context *rsa, const char *path,
*
* \return 0 if successful, or a specific X509 or PEM error code
*/
int x509parse_public_key( rsa_context *rsa,
const unsigned char *key, size_t keylen );
int x509parse_public_key_rsa( rsa_context *rsa,
const unsigned char *key, size_t keylen );
/** \ingroup x509_module */
/**
@ -466,7 +466,7 @@ int x509parse_public_key( rsa_context *rsa,
*
* \return 0 if successful, or a specific X509 or PEM error code
*/
int x509parse_public_keyfile( rsa_context *rsa, const char *path );
int x509parse_public_keyfile_rsa( rsa_context *rsa, const char *path );
/** \ingroup x509_module */
/**