Home
last modified time | relevance | path

Searched refs:isKeyInUse (Results 1 – 3 of 3) sorted by relevance

/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/cc3x_sbromlib/
Dbsv_aes_driver.c33 uint32_t isKeyInUse = 0; in LoadBsvAesKey() local
50 CC_BSV_IS_KCP_IN_USE(hwBaseAddress, isKeyInUse, error); in LoadBsvAesKey()
51 if ( (error) || (isKeyInUse != CC_TRUE) ) { in LoadBsvAesKey()
65 CC_BSV_IS_KCE_IN_USE(hwBaseAddress, isKeyInUse, error); in LoadBsvAesKey()
66 if ( (error) || (isKeyInUse != CC_TRUE) ) { in LoadBsvAesKey()
80 CC_BSV_IS_KPICV_IN_USE(hwBaseAddress, isKeyInUse, error); in LoadBsvAesKey()
81 if ( (error) || (isKeyInUse != CC_TRUE) ) { in LoadBsvAesKey()
95 CC_BSV_IS_KCEICV_IN_USE(hwBaseAddress, isKeyInUse, error); in LoadBsvAesKey()
96 if ( (error) || (isKeyInUse != CC_TRUE) ) { in LoadBsvAesKey()
/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/codesafe/src/crypto_api/cc3x_sym/driver/
Daes_driver.c135 uint32_t isKeyInUse = 0; in LoadAesKey() local
169 CC_IS_OTP_KEY_IN_USE(OEM, KCP, error, isKeyInUse); in LoadAesKey()
170 if ( (error != CC_OK) || (isKeyInUse != CC_TRUE) ) { in LoadAesKey()
191 CC_IS_OTP_KEY_IN_USE(MANUFACTURE, KPICV, error, isKeyInUse); in LoadAesKey()
192 if ( (error != CC_OK) || (isKeyInUse != CC_TRUE) ) { in LoadAesKey()
Ddriver_defs.h357 #define CC_IS_OTP_KEY_IN_USE(owner, keyType, rc, isKeyInUse)\ argument
365 isKeyInUse = (notInUse ==0)?CC_TRUE:CC_FALSE;\