Open smflt opened 7 years ago
I want to obfuscate the serialization class
for Example class test -> DSDISUKDHSD { int a; -> int FLKDJFDLIFJ:; string b; -> string aDSAJDSLDKS; }
but Msgpack uses alphabet sorting for reflection. so I have to use MessagePackMember(0) for all the variables.
It's too cumbersome Is there a good idea?
It is great reason for msgpack for cli to support "as declared" even if it potentially leads undefined behavior in own risk. I consider to add an option to disable alphabet sorting.
I want to obfuscate the serialization class
for Example class test -> DSDISUKDHSD { int a; -> int FLKDJFDLIFJ:; string b; -> string aDSAJDSLDKS;
}
but Msgpack uses alphabet sorting for reflection. so I have to use MessagePackMember(0) for all the variables.
It's too cumbersome Is there a good idea?