Home
last modified time | relevance | path

Searched refs:SERIAL_NUMBER_HEDER_SIZE (Results 1 – 4 of 4) sorted by relevance

/base/security/crypto_framework/common/inc/
Dconfig.h23 #define SERIAL_NUMBER_HEDER_SIZE 2 macro
/base/security/certificate_framework/frameworks/common/v1.0/inc/
Dconfig.h23 #define SERIAL_NUMBER_HEDER_SIZE 2 macro
/base/security/certificate_framework/frameworks/adapter/v1.0/src/
Dx509_crl_entry_openssl.c105 if (serialNumLen <= SERIAL_NUMBER_HEDER_SIZE) { in GetSerialNumber()
111 out->data = (uint8_t *)HcfMalloc(serialNumLen - SERIAL_NUMBER_HEDER_SIZE, 0); in GetSerialNumber()
117 out->size = (uint32_t)(serialNumLen - SERIAL_NUMBER_HEDER_SIZE); in GetSerialNumber()
118 (void)memcpy_s(out->data, out->size, serialNumBytes + SERIAL_NUMBER_HEDER_SIZE, out->size); in GetSerialNumber()
Dx509_certificate_openssl.c321 if (serialNumLen <= SERIAL_NUMBER_HEDER_SIZE) { in GetSerialNumberX509Openssl()
327 CfResult ret = DeepCopyDataToOut((const char *)(serialNumBytes + SERIAL_NUMBER_HEDER_SIZE), in GetSerialNumberX509Openssl()
328 (uint32_t)(serialNumLen - SERIAL_NUMBER_HEDER_SIZE), out); in GetSerialNumberX509Openssl()