Skip to content

Instantly share code, notes, and snippets.

View FaresAtef1's full-sized avatar

Fares Atef FaresAtef1

View GitHub Profile
@FaresAtef1
FaresAtef1 / GSoC-2023.md
Last active December 19, 2023 11:02
Final documentation of the work done in The Enigma Team "Better (de)serialization support for objects" project through GSoC'23.

GSoC_Logo

Google Summer of Code 2023 - The Enigma Team

Field Type Personal Info
Student Name Fares Atef
Github Profile FaresAtef1
LinkedIn Profile Fares Atef
Organization ENIGMA
ut64 ut8_to_ut64(ut8 *data,ut64 data_size) {
ut64 result=0;
for(ut64 i=0;i<data_size;i++){
result|=((ut64) data[i]) << (8*i);
}
if(data_size<sizeof(ut64)){
for(ut64 i=0;i<sizeof(ut64);i++){
result|=((ut64) 0) << (8*i);
}
}