Home
last modified time | relevance | path

Searched refs:hexCh (Results 1 - 2 of 2) sorted by relevance

/base/notification/distributed_notification_service/services/ans/src/common/
H A Daes_gcm_helper.cpp54 unsigned char AesGcmHelper::HexChar2Byte(const char &hexCh) in HexChar2Byte() argument
56 if (hexCh >= '0' && hexCh <= '9') { in HexChar2Byte()
57 return hexCh - '0'; in HexChar2Byte()
58 } else if (hexCh >= 'A' && hexCh <= 'F') { in HexChar2Byte()
59 return hexCh - 'A' + HEX_OF_A; in HexChar2Byte()
60 } else if (hexCh >= 'a' && hexCh <= 'f') { in HexChar2Byte()
61 return hexCh in HexChar2Byte()
[all...]
/base/notification/distributed_notification_service/services/ans/include/
H A Daes_gcm_helper.h36 static unsigned char HexChar2Byte(const char &hexCh);

Completed in 1 milliseconds