2014-04-09 05:02 AM
Hi,
I am usingSTM32 Cryptographic Library . There is a function ''STM32_CryptoLibraryVersion'' that gets as a parameter the
structure STM32CryptoLibVer_TypeDef. The problem is that I can't find the description about the elements of this structure not in document UM0586 and not in source code. I am interesting in ''uint8_tT
[2];
'' parameter description. Do someone can help me ?typedef
struct </p>
</b>
{
uint8_t
X
;
/*!< Used to get the Xparametre
of the current STM32crypto
libraryverion
*/
uint8_t
Y
;
/*!< Used to get the Yparametre
of the current STM32crypto
libraryverion
*/
uint8_t
Z
;
/*!< Used to get the Zparametre
of the current STM32crypto
libraryverion
*/
uint8_t
T
[2];
/*!< Used to get the Type of theverion
. Thisparametre
can be ''HW'' or ''FW'' */
uint8_t
CortexConf
;
uint8_t
MicroConf
;
uint8_t
EndiannessConf
;
uint8_t
MisalignedConf
;
uint8_t
EncDecConf
;
uint16_t
SymKeyConf
;
uint16_t
SymKeyModesConf
;
uint16_t
AsymKeyConf
;
uint16_t
HashConf
;
uint8_t
DrbgConf
;
uint8_t
AesConf
;
uint8_t
RsaConf
;
uint8_t
GcmConf
;
}
STM32CryptoLibVer_TypeDef
;