From 280948a32be8e2a145851bc6f368cb47e9e78e92 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 16 May 2019 15:27:14 +0200 Subject: [PATCH] Fix copypasta in the documentation of PSA_KEY_ID_xxx_{MIN,MAX} --- include/psa/crypto_values.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/psa/crypto_values.h b/include/psa/crypto_values.h index 2ee8839c6..89d85e09e 100644 --- a/include/psa/crypto_values.h +++ b/include/psa/crypto_values.h @@ -1443,13 +1443,13 @@ /** The minimum value for a key identifier chosen by the application. */ #define PSA_KEY_ID_USER_MIN ((psa_key_id_t)0x00000001) -/** The minimum value for a key identifier chosen by the application. +/** The maximum value for a key identifier chosen by the application. */ #define PSA_KEY_ID_USER_MAX ((psa_key_id_t)0x3fffffff) -/** The minimum value for a key identifier chosen by the application. +/** The minimum value for a key identifier chosen by the implementation. */ #define PSA_KEY_ID_VENDOR_MIN ((psa_key_id_t)0x40000000) -/** The minimum value for a key identifier chosen by the application. +/** The maximum value for a key identifier chosen by the implementation. */ #define PSA_KEY_ID_VENDOR_MAX ((psa_key_id_t)0x7fffffff)