mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 22:45:48 +01:00
Assigned error codes to the error defines
This commit is contained in:
parent
82e2945ed2
commit
0e06c0fdb4
@ -73,19 +73,20 @@
|
|||||||
* PBKDF2 1 0x007C-0x007C
|
* PBKDF2 1 0x007C-0x007C
|
||||||
*
|
*
|
||||||
* High-level module nr (3 bits - 0x1...-0x8...)
|
* High-level module nr (3 bits - 0x1...-0x8...)
|
||||||
* Name ID Nr of Errors
|
* Name ID Nr of Errors
|
||||||
* PEM 1 9
|
* PEM 1 9
|
||||||
* PKCS#12 1 4 (Started from top)
|
* PKCS#12 1 4 (Started from top)
|
||||||
* X509 2 25
|
* X509 2 25
|
||||||
* PK 2 3 (Started from top)
|
* PK 2 3 (Started from top)
|
||||||
* DHM 3 6
|
* DHM 3 6
|
||||||
* PKCS5 3 4 (Started from top)
|
* PKCS5 3 4 (Started from top)
|
||||||
* RSA 4 9
|
* RSA 4 9
|
||||||
* ECP 4 4 (Started from top)
|
* ECP 4 4 (Started from top)
|
||||||
* MD 5 4
|
* MD 5 4
|
||||||
* CIPHER 6 5
|
* X509WRITE 5 3 (Started from top)
|
||||||
* SSL 6 6 (Started from top)
|
* CIPHER 6 5
|
||||||
* SSL 7 31
|
* SSL 6 6 (Started from top)
|
||||||
|
* SSL 7 31
|
||||||
*
|
*
|
||||||
* Module dependent error code (5 bits 0x.08.-0x.F8.)
|
* Module dependent error code (5 bits 0x.08.-0x.F8.)
|
||||||
*/
|
*/
|
||||||
|
@ -31,9 +31,10 @@
|
|||||||
|
|
||||||
#include "rsa.h"
|
#include "rsa.h"
|
||||||
|
|
||||||
#define POLARSSL_ERR_X509_WRITE_UNKNOWN_OID -1
|
#define POLARSSL_ERR_X509WRITE_UNKNOWN_OID -0x5F80 /**< Requested OID is unknown. */
|
||||||
#define POLARSSL_ERR_X509_WRITE_BAD_INPUT_DATA -1
|
#define POLARSSL_ERR_X509WRITE_BAD_INPUT_DATA -0x5F00 /**< Failed to allocate memory. */
|
||||||
#define POLARSSL_ERR_X509_WRITE_MALLOC_FAILED -1
|
#define POLARSSL_ERR_X509WRITE_MALLOC_FAILED -0x5E80 /**< Failed to allocate memory. */
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -149,6 +149,10 @@
|
|||||||
#include "polarssl/x509.h"
|
#include "polarssl/x509.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(POLARSSL_X509_WRITE_C)
|
||||||
|
#include "polarssl/x509write.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(POLARSSL_XTEA_C)
|
#if defined(POLARSSL_XTEA_C)
|
||||||
#include "polarssl/xtea.h"
|
#include "polarssl/xtea.h"
|
||||||
#endif
|
#endif
|
||||||
@ -251,7 +255,7 @@ void polarssl_strerror( int ret, char *buf, size_t buflen )
|
|||||||
if( use_ret == -(POLARSSL_ERR_PK_MALLOC_FAILED) )
|
if( use_ret == -(POLARSSL_ERR_PK_MALLOC_FAILED) )
|
||||||
snprintf( buf, buflen, "PK - Memory alloation failed" );
|
snprintf( buf, buflen, "PK - Memory alloation failed" );
|
||||||
if( use_ret == -(POLARSSL_ERR_PK_TYPE_MISMATCH) )
|
if( use_ret == -(POLARSSL_ERR_PK_TYPE_MISMATCH) )
|
||||||
snprintf( buf, buflen, "PK - Type mismatch, eg attempt to use a RSA key as EC, or to modify key type" );
|
snprintf( buf, buflen, "PK - Type mismatch, eg attempt to encrypt with an ECDSA key" );
|
||||||
if( use_ret == -(POLARSSL_ERR_PK_BAD_INPUT_DATA) )
|
if( use_ret == -(POLARSSL_ERR_PK_BAD_INPUT_DATA) )
|
||||||
snprintf( buf, buflen, "PK - Bad input parameters to function" );
|
snprintf( buf, buflen, "PK - Bad input parameters to function" );
|
||||||
#endif /* POLARSSL_PK_C */
|
#endif /* POLARSSL_PK_C */
|
||||||
@ -432,6 +436,15 @@ void polarssl_strerror( int ret, char *buf, size_t buflen )
|
|||||||
snprintf( buf, buflen, "X509 - Elliptic curve is unsupported (only NIST curves are supported)" );
|
snprintf( buf, buflen, "X509 - Elliptic curve is unsupported (only NIST curves are supported)" );
|
||||||
#endif /* POLARSSL_X509_PARSE_C */
|
#endif /* POLARSSL_X509_PARSE_C */
|
||||||
|
|
||||||
|
#if defined(POLARSSL_X509_WRITE_C)
|
||||||
|
if( use_ret == -(POLARSSL_ERR_X509WRITE_UNKNOWN_OID) )
|
||||||
|
snprintf( buf, buflen, "X509WRITE - Requested OID is unknown" );
|
||||||
|
if( use_ret == -(POLARSSL_ERR_X509WRITE_BAD_INPUT_DATA) )
|
||||||
|
snprintf( buf, buflen, "X509WRITE - Failed to allocate memory" );
|
||||||
|
if( use_ret == -(POLARSSL_ERR_X509WRITE_MALLOC_FAILED) )
|
||||||
|
snprintf( buf, buflen, "X509WRITE - Failed to allocate memory" );
|
||||||
|
#endif /* POLARSSL_X509_WRITE_C */
|
||||||
|
|
||||||
if( strlen( buf ) == 0 )
|
if( strlen( buf ) == 0 )
|
||||||
snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
|
snprintf( buf, buflen, "UNKNOWN ERROR CODE (%04X)", use_ret );
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ int x509write_csr_set_subject_name( x509_csr *ctx, char *subject_name )
|
|||||||
oid = OID_AT_STATE;
|
oid = OID_AT_STATE;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ret = POLARSSL_ERR_X509_WRITE_UNKNOWN_OID;
|
ret = POLARSSL_ERR_X509WRITE_UNKNOWN_OID;
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -117,7 +117,7 @@ int x509write_csr_set_subject_name( x509_csr *ctx, char *subject_name )
|
|||||||
{
|
{
|
||||||
if( c - s > 127 )
|
if( c - s > 127 )
|
||||||
{
|
{
|
||||||
ret = POLARSSL_ERR_X509_WRITE_BAD_INPUT_DATA;
|
ret = POLARSSL_ERR_X509WRITE_BAD_INPUT_DATA;
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,7 +125,7 @@ int x509write_csr_set_subject_name( x509_csr *ctx, char *subject_name )
|
|||||||
|
|
||||||
if( cur == NULL )
|
if( cur == NULL )
|
||||||
{
|
{
|
||||||
ret = POLARSSL_ERR_X509_WRITE_MALLOC_FAILED;
|
ret = POLARSSL_ERR_X509WRITE_MALLOC_FAILED;
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ my @low_level_modules = ( "AES", "ASN1", "BLOWFISH", "CAMELLIA", "BIGNUM",
|
|||||||
"PADLOCK", "DES", "NET", "CTR_DRBG", "ENTROPY",
|
"PADLOCK", "DES", "NET", "CTR_DRBG", "ENTROPY",
|
||||||
"MD2", "MD4", "MD5", "SHA1", "SHA256", "SHA512", "GCM" );
|
"MD2", "MD4", "MD5", "SHA1", "SHA256", "SHA512", "GCM" );
|
||||||
my @high_level_modules = ( "PEM", "X509", "DHM", "RSA", "ECP", "MD", "CIPHER", "SSL",
|
my @high_level_modules = ( "PEM", "X509", "DHM", "RSA", "ECP", "MD", "CIPHER", "SSL",
|
||||||
"PK", "PKCS12", "PKCS5" );
|
"PK", "PKCS12", "PKCS5", "X509WRITE" );
|
||||||
|
|
||||||
my $line_separator = $/;
|
my $line_separator = $/;
|
||||||
undef $/;
|
undef $/;
|
||||||
@ -49,6 +49,7 @@ while (my $line = <GREP>)
|
|||||||
|
|
||||||
my $define_name = $module_name;
|
my $define_name = $module_name;
|
||||||
$define_name = "X509_PARSE" if ($define_name eq "X509");
|
$define_name = "X509_PARSE" if ($define_name eq "X509");
|
||||||
|
$define_name = "X509_WRITE" if ($define_name eq "X509WRITE");
|
||||||
$define_name = "ASN1_PARSE" if ($define_name eq "ASN1");
|
$define_name = "ASN1_PARSE" if ($define_name eq "ASN1");
|
||||||
$define_name = "SSL_TLS" if ($define_name eq "SSL");
|
$define_name = "SSL_TLS" if ($define_name eq "SSL");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user