mbedTLS
x509_crt_verify_strings
is only used within mbedTLS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
mbedTLS
x509_crt_verify_strings
x509_crt_verify_strings variable
Syntax
Show:
Summary
Declaration
from
x509_crt.c:1666
static
const
struct
x509_crt_verify_string
x509_crt_verify_strings
[
]
=
{
{
MBEDTLS_X509_BADCERT_EXPIRED
,
"The certificate validity has expired"
}
,
{
MBEDTLS_X509_BADCERT_REVOKED
,
"The certificate has been revoked (is on a CRL)"
}
,
{
MBEDTLS_X509_BADCERT_CN_MISMATCH
,
"The certificate Common Name (CN) does not match with the expected CN"
}
,
{
MBEDTLS_X509_BADCERT_NOT_TRUSTED
,
"The certificate is not correctly signed by the trusted CA"
}
,
{
MBEDTLS_X509_BADCRL_NOT_TRUSTED
,
"The CRL is not correctly signed by the trusted CA"
}
,
{
MBEDTLS_X509_BADCRL_EXPIRED
,
"The CRL is expired"
}
,
{
MBEDTLS_X509_BADCERT_MISSING
,
"Certificate was missing"
}
,
{
MBEDTLS_X509_BADCERT_SKIP_VERIFY
,
"Certificate verification was skipped"
}
,
{
MBEDTLS_X509_BADCERT_OTHER
,
"Other reason (can be used by verify callback)"
}
,
{
MBEDTLS_X509_BADCERT_FUTURE
,
"The certificate validity starts in the future"
}
,
{
MBEDTLS_X509_BADCRL_FUTURE
,
"The CRL is from the future"
}
,
{
MBEDTLS_X509_BADCERT_KEY_USAGE
,
"Usage does not match the keyUsage extension"
}
,
{
MBEDTLS_X509_BADCERT_EXT_KEY_USAGE
,
"Usage does not match the extendedKeyUsage extension"
}
,
{
MBEDTLS_X509_BADCERT_NS_CERT_TYPE
,
"Usage does not match the nsCertType extension"
}
,
{
MBEDTLS_X509_BADCERT_BAD_MD
,
"The certificate is signed with an unacceptable hash."
}
,
{
MBEDTLS_X509_BADCERT_BAD_PK
,
"The certificate is signed with an unacceptable PK alg (eg RSA vs ECDSA)."
}
,
{
MBEDTLS_X509_BADCERT_BAD_KEY
,
"The certificate is signed with an unacceptable key (eg bad curve, RSA too short)."
}
,
{
MBEDTLS_X509_BADCRL_BAD_MD
,
"The CRL is signed with an unacceptable hash."
}
,
{
MBEDTLS_X509_BADCRL_BAD_PK
,
"The CRL is signed with an unacceptable PK alg (eg RSA vs ECDSA)."
}
,
{
MBEDTLS_X509_BADCRL_BAD_KEY
,
"The CRL is signed with an unacceptable key (eg bad curve, RSA too short)."
}
,
{
0
,
NULL
}
}
;
Examples
References
from
examples
Code
Location
Referrer
static
const
struct
x509_crt_verify_string
x509_crt_verify_strings
[
]
=
{
x509_crt.c:1666
for
(
cur
=
x509_crt_verify_strings
;
cur
->
string
!=
NULL
;
cur
++
)
x509_crt.c:1698
mbedtls_x509_crt_verify_info()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
x509_crt_verify_strings
is read by 1 function:
All items filtered out
x509_crt_verify_strings
mbedtls_x509_crt_verify_info()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out