Home
last modified time | relevance | path

Searched defs:byte (Results 1 – 12 of 12) sorted by relevance

/base/security/device_auth/common_lib/impl/src/
Dstring_util.c48 int32_t ByteToHexString(const uint8_t *byte, uint32_t byteLen, char *hexStr, uint32_t hexLen) in ByteToHexString()
80 int32_t HexStringToByte(const char *hexStr, uint8_t *byte, uint32_t byteLen) in HexStringToByte()
125 int32_t Base64StringToByte(const char *base64Str, uint8_t *byte, uint32_t *byteLen) in Base64StringToByte()
166 int32_t ByteToBase64String(const uint8_t *byte, uint32_t byteLen, char *base64Str, uint32_t strLen) in ByteToBase64String()
Djson_utils.c209 int32_t GetByteFromJson(const CJson *jsonObj, const char *key, uint8_t *byte, uint32_t len) in GetByteFromJson()
417 int32_t AddByteToJson(CJson *jsonObj, const char *key, const uint8_t *byte, uint32_t len) in AddByteToJson()
/base/security/dlp_permission_service/frameworks/common/src/
Dhex_string.cpp29 int32_t ByteToHexString(const uint8_t *byte, uint32_t byteLen, char *hexStr, uint32_t hexLen) in ByteToHexString()
61 int32_t HexStringToByte(const char *hexStr, uint8_t *byte, uint32_t byteLen) in HexStringToByte()
/base/telephony/sms_mms/frameworks/native/mms/src/utils/
Dmms_quoted_printable.cpp37 for (auto byte : input) { in Encode() local
/base/security/device_security_level/baselib/utils/src/
Dutils_base64.c84 …uint32_t byte = (((a << 16) & 0x00FF0000) | ((b << 8) & 0x0000FF00) | ((c << 0) & 0x000000FF)); /*… in Base64Encode() local
144 uint32_t byte = in Base64Decode() local
/base/telephony/sms_mms/utils/
Dstring_utils.cpp93 std::string byte = str.substr(i, hexStep); in HexToString() local
/base/hiviewdfx/faultloggerd/common/
Ddfx_define.h82 #define BYTE_TO_BINARY(byte) \ argument
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
Dcert_manager_auth_mgr.c56 static int32_t ByteToHexString(const uint8_t *byte, uint32_t byteLen, char *hexStr, uint32_t hexLen) in ByteToHexString()
71 static int32_t HexStringToByte(const char *hexStr, uint8_t *byte, uint32_t byteLen) in HexStringToByte()
/base/security/device_auth/test/unittest/deviceauth/source/
Djson_utils_mock.c267 int32_t GetByteFromJson(const CJson *jsonObj, const char *key, uint8_t *byte, uint32_t len) in GetByteFromJson()
475 int32_t AddByteToJson(CJson *jsonObj, const char *key, const uint8_t *byte, uint32_t len) in AddByteToJson()
/base/startup/hvb/libhvb/src/crypto/
Dhvb_rsa.c40 #define byte2bit(byte) ((byte) << 3) argument
Dhvb_rsa_verify.c40 #define byte2bit(byte) ((byte) << 3) argument
/base/security/huks/frameworks/huks_standard/main/os_dependency/ipc/src/
Dhks_ipc_serialization.c326 uint32_t byte = (a << (8 * 2)) + (b << (8 * 1)) + (c << (8 * 0)); in Base64Encode() local