Home
last modified time | relevance | path

Searched refs:base64_decode (Results 1 – 15 of 15) sorted by relevance

/openbmc/linux/lib/
H A Dbase64.c73 int base64_decode(const char *src, int srclen, u8 *dst) in base64_decode() function
103 EXPORT_SYMBOL_GPL(base64_decode);
/openbmc/libcper/sections/
H A Dcper-section-dmar-iommu.c98 UINT8 *decoded = base64_decode(json_object_get_string(encoded), in ir_section_dmar_iommu_to_cper()
111 decoded = base64_decode(json_object_get_string(encoded), in ir_section_dmar_iommu_to_cper()
H A Dcper-section-cxl-protocol.c241 decoded = base64_decode(json_object_get_string(encoded), in ir_section_cxl_protocol_to_cper()
269 decoded = base64_decode(json_object_get_string(encoded), in ir_section_cxl_protocol_to_cper()
284 decoded = base64_decode(json_object_get_string(encoded), in ir_section_cxl_protocol_to_cper()
H A Dcper-section-dmar-vtd.c183 UINT8 *decoded = base64_decode(json_object_get_string(encoded), in ir_section_dmar_vtd_to_cper()
197 decoded = base64_decode(json_object_get_string(encoded), in ir_section_dmar_vtd_to_cper()
H A Dcper-section-pcie.c213 UINT8 *decoded = base64_decode(json_object_get_string(encoded), in ir_section_pcie_to_cper()
228 decoded = base64_decode(json_object_get_string(encoded), in ir_section_pcie_to_cper()
H A Dcper-section-ccix-per.c88 UINT8 *decoded = base64_decode(json_object_get_string(encoded), in ir_section_ccix_per_to_cper()
H A Dcper-section-cxl-component.c136 UINT8 *decoded = base64_decode(json_object_get_string(encoded), in ir_section_cxl_component_to_cper()
H A Dcper-section-arm.c553 UINT8 *decoded = base64_decode( in ir_section_arm_to_cper()
904 UINT8 *decoded = base64_decode(json_object_get_string(encoded), in ir_arm_unknown_register_to_cper()
H A Dcper-section-ia32x64.c823 UINT8 *decoded = base64_decode(j_string, j_size, &decoded_len); in ir_ia32x64_context_info_to_cper()
/openbmc/linux/include/linux/
H A Dbase64.h14 int base64_decode(const char *src, int len, u8 *dst);
/openbmc/libcper/
H A Dbase64.h7 UINT8 *base64_decode(const CHAR8 *src, INT32 len, INT32 *out_len);
H A Dbase64.c92 UINT8 *base64_decode(const CHAR8 *src, INT32 len, INT32 *out_len) in base64_decode() function
H A Dir-parse.c177 UINT8 *decoded = base64_decode( in ir_section_to_cper()
/openbmc/libcper/tests/
H A Dbase64_test.cpp22 UINT8 *decoded = base64_decode(data.data(), data.size(), &decoded_len); in TEST()
/openbmc/linux/drivers/nvme/common/
H A Dauth.c175 key_len = base64_decode(secret, allocated_len, key->key); in nvme_auth_extract_key()