From: Dariusz Michaluk Date: Thu, 12 May 2016 14:46:09 +0000 (+0200) Subject: Update AES description. X-Git-Tag: accepted/tizen/common/20160810.161523~144 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=805dc74af5c322ca0199cf67bc30b7fae7f3c070;p=platform%2Fcore%2Fsecurity%2Fyaca.git Update AES description. Change-Id: I4172389ae79b2c1028f3035d051f69db0a90804a --- diff --git a/api/yaca/types.h b/api/yaca/types.h index 72d45f4..282d007 100644 --- a/api/yaca/types.h +++ b/api/yaca/types.h @@ -133,8 +133,17 @@ typedef enum { typedef enum { /** * AES encryption. - * - see #yaca_block_cipher_mode_e for details on additional parameters (mandatory). * - Supported key lengths: @c 128, @c 192 and @c 256. + * - Supported block cipher modes: + * #YACA_BCM_CBC, + * #YACA_BCM_OFB, + * #YACA_BCM_CFB, + * #YACA_BCM_ECB, + * #YACA_BCM_GCM, + * #YACA_BCM_CCM, + * #YACA_BCM_CTR, + * #YACA_BCM_OCB + * - see #yaca_block_cipher_mode_e for details on additional parameters (mandatory). */ YACA_ENC_AES = 0,