Fix name of PSA_ALG_IS_BLOCK_CIPHER_MAC
The macro was used under the name PSA_ALG_IS_BLOCK_CIPHER_MAC but defined as PSA_ALG_IS_CIPHER_MAC. That wouldn't have worked if we used this macro (we currently don't but it may become useful).
This commit is contained in:
parent
70ce2c6170
commit
9df2dc87ab
1 changed files with 1 additions and 1 deletions
|
@ -761,7 +761,7 @@ typedef uint32_t psa_algorithm_t;
|
||||||
* This macro may return either 0 or 1 if \p alg is not a supported
|
* This macro may return either 0 or 1 if \p alg is not a supported
|
||||||
* algorithm identifier.
|
* algorithm identifier.
|
||||||
*/
|
*/
|
||||||
#define PSA_ALG_IS_CIPHER_MAC(alg) \
|
#define PSA_ALG_IS_BLOCK_CIPHER_MAC(alg) \
|
||||||
(((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
|
(((alg) & (PSA_ALG_CATEGORY_MASK | PSA_ALG_MAC_SUBCATEGORY_MASK)) == \
|
||||||
PSA_ALG_CIPHER_MAC_BASE)
|
PSA_ALG_CIPHER_MAC_BASE)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue