mbedTLS
oid_sig_alg
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
ESP-IDF Framework and Examples
mbedTLS
oid_sig_alg
oid_sig_alg variable
Syntax
Show:
Summary
Declaration
from
oid.c:379
static
const
oid_sig_alg_t
oid_sig_alg
[
]
=
{
#if
defined
(
MBEDTLS_RSA_C
)
#if
defined
(
MBEDTLS_MD_CAN_MD5
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_PKCS1_MD5
,
"md5WithRSAEncryption"
,
"RSA with MD5"
)
,
MBEDTLS_MD_MD5
,
MBEDTLS_PK_RSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA1
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_PKCS1_SHA1
,
"sha-1WithRSAEncryption"
,
"RSA with SHA1"
)
,
MBEDTLS_MD_SHA1
,
MBEDTLS_PK_RSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA224
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_PKCS1_SHA224
,
"sha224WithRSAEncryption"
,
"RSA with SHA-224"
)
,
MBEDTLS_MD_SHA224
,
MBEDTLS_PK_RSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA256
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_PKCS1_SHA256
,
"sha256WithRSAEncryption"
,
"RSA with SHA-256"
)
,
MBEDTLS_MD_SHA256
,
MBEDTLS_PK_RSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA384
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_PKCS1_SHA384
,
"sha384WithRSAEncryption"
,
"RSA with SHA-384"
)
,
MBEDTLS_MD_SHA384
,
MBEDTLS_PK_RSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA512
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_PKCS1_SHA512
,
"sha512WithRSAEncryption"
,
"RSA with SHA-512"
)
,
MBEDTLS_MD_SHA512
,
MBEDTLS_PK_RSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA1
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_RSA_SHA_OBS
,
"sha-1WithRSAEncryption"
,
"RSA with SHA1"
)
,
MBEDTLS_MD_SHA1
,
MBEDTLS_PK_RSA
,
}
,
#endif
#endif
#if
defined
(
MBEDTLS_PK_CAN_ECDSA_SOME
)
#if
defined
(
MBEDTLS_MD_CAN_SHA1
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_ECDSA_SHA1
,
"ecdsa-with-SHA1"
,
"ECDSA with SHA1"
)
,
MBEDTLS_MD_SHA1
,
MBEDTLS_PK_ECDSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA224
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_ECDSA_SHA224
,
"ecdsa-with-SHA224"
,
"ECDSA with SHA224"
)
,
MBEDTLS_MD_SHA224
,
MBEDTLS_PK_ECDSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA256
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_ECDSA_SHA256
,
"ecdsa-with-SHA256"
,
"ECDSA with SHA256"
)
,
MBEDTLS_MD_SHA256
,
MBEDTLS_PK_ECDSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA384
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_ECDSA_SHA384
,
"ecdsa-with-SHA384"
,
"ECDSA with SHA384"
)
,
MBEDTLS_MD_SHA384
,
MBEDTLS_PK_ECDSA
,
}
,
#endif
#if
defined
(
MBEDTLS_MD_CAN_SHA512
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_ECDSA_SHA512
,
"ecdsa-with-SHA512"
,
"ECDSA with SHA512"
)
,
MBEDTLS_MD_SHA512
,
MBEDTLS_PK_ECDSA
,
}
,
#endif
#endif
#if
defined
(
MBEDTLS_RSA_C
)
{
OID_DESCRIPTOR
(
MBEDTLS_OID_RSASSA_PSS
,
"RSASSA-PSS"
,
"RSASSA-PSS"
)
,
MBEDTLS_MD_NONE
,
MBEDTLS_PK_RSASSA_PSS
,
}
,
#endif
{
NULL_OID_DESCRIPTOR
,
MBEDTLS_MD_NONE
,
MBEDTLS_PK_NONE
,
}
,
}
;
Examples
References
from
examples
Code
Location
Referrer
static
const
oid_sig_alg_t
oid_sig_alg
[
]
=
oid.c:379
FN_OID_TYPED_FROM_ASN1
(
oid_sig_alg_t
,
sig_alg
,
oid_sig_alg
)
oid.c:473
oid_sig_alg
,
oid.c:492
mbedtls_oid_get_oid_by_sig_alg()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
oid_sig_alg
is read by 1 function:
All items filtered out
oid_sig_alg
mbedtls_oid_get_oid_by_sig_alg()
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