Hi,Im trying to encryp using AES 128 CTR but i dont get the same result that online calculators.Im using this online calculator: https://cryptii.com/pipes/aes-encryptionMy code is the next:uint8_t IVKey[] = {0xDD, 0xF9, 0x11, 0xA6, 0xDD, 0xF9, 0x11, ...
Hi,Im looking for encryp using internal AES peripheral that the STM32G0 has.I need touse "AES128-CMAC" but i dont found the option in HAL libraries to set "hcryp.Init.Algorithm=XXX" and "defgroup CRYP_Algorithm_Mode CRYP Algorithm Mode" library optio...
Hi eveyone,I need to use the CR95HF.dll library on a VB.NET application but when i try insert on the project i get an error.I think this library is VB compatible only but i dont sure about this.Maybe anyone know how to port this library to be used on...
Hi, Im searching for develop a NFC reader using the CR95HF IC transceiver, but i dont know if ST has a STM32 MCU firmware bridge to be programmed. The CR95HF should be connect to PC and the commands sent through the 95HF IC.I want to connect the CR95...
Hi all,Its working now.My problem was that the AESKey and IVKey were declared as uint8_t and works with uint32_tand both keys must be declared as a global variables, not a local variable.Thanks,Best REgards,