mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 20:55:41 +01:00
Add PSA_KEY_TYPE_IS_DSA to go with PSA_KEY_TYPE_IS_RSA
Also move PSA_KEY_TYPE_IS_RSA to a more logical location.
This commit is contained in:
parent
44fed61e01
commit
583b55d97d
@ -416,9 +416,6 @@ typedef uint32_t psa_key_type_t;
|
|||||||
*/
|
*/
|
||||||
#define PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) \
|
#define PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) \
|
||||||
((type) & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR)
|
((type) & ~PSA_KEY_TYPE_CATEGORY_FLAG_PAIR)
|
||||||
/** Whether a key type is an RSA key (pair or public-only). */
|
|
||||||
#define PSA_KEY_TYPE_IS_RSA(type) \
|
|
||||||
(PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY)
|
|
||||||
|
|
||||||
/** Raw data.
|
/** Raw data.
|
||||||
*
|
*
|
||||||
@ -475,11 +472,17 @@ typedef uint32_t psa_key_type_t;
|
|||||||
#define PSA_KEY_TYPE_RSA_PUBLIC_KEY ((psa_key_type_t)0x60010000)
|
#define PSA_KEY_TYPE_RSA_PUBLIC_KEY ((psa_key_type_t)0x60010000)
|
||||||
/** RSA key pair (private and public key). */
|
/** RSA key pair (private and public key). */
|
||||||
#define PSA_KEY_TYPE_RSA_KEYPAIR ((psa_key_type_t)0x70010000)
|
#define PSA_KEY_TYPE_RSA_KEYPAIR ((psa_key_type_t)0x70010000)
|
||||||
|
/** Whether a key type is an RSA key (pair or public-only). */
|
||||||
|
#define PSA_KEY_TYPE_IS_RSA(type) \
|
||||||
|
(PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_RSA_PUBLIC_KEY)
|
||||||
|
|
||||||
/** DSA public key. */
|
/** DSA public key. */
|
||||||
#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x60020000)
|
#define PSA_KEY_TYPE_DSA_PUBLIC_KEY ((psa_key_type_t)0x60020000)
|
||||||
/** DSA key pair (private and public key). */
|
/** DSA key pair (private and public key). */
|
||||||
#define PSA_KEY_TYPE_DSA_KEYPAIR ((psa_key_type_t)0x70020000)
|
#define PSA_KEY_TYPE_DSA_KEYPAIR ((psa_key_type_t)0x70020000)
|
||||||
|
/** Whether a key type is an DSA key (pair or public-only). */
|
||||||
|
#define PSA_KEY_TYPE_IS_DSA(type) \
|
||||||
|
(PSA_KEY_TYPE_PUBLIC_KEY_OF_KEYPAIR(type) == PSA_KEY_TYPE_DSA_PUBLIC_KEY)
|
||||||
|
|
||||||
#define PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE ((psa_key_type_t)0x60030000)
|
#define PSA_KEY_TYPE_ECC_PUBLIC_KEY_BASE ((psa_key_type_t)0x60030000)
|
||||||
#define PSA_KEY_TYPE_ECC_KEYPAIR_BASE ((psa_key_type_t)0x70030000)
|
#define PSA_KEY_TYPE_ECC_KEYPAIR_BASE ((psa_key_type_t)0x70030000)
|
||||||
|
Loading…
Reference in New Issue
Block a user