Skip to content

Converts an std::string byte array to an uint8_t byte array.

Notifications You must be signed in to change notification settings

womblee/std-string-to-uint8_t-array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 

Repository files navigation

std-string-to-uint8_t-array

Converts an std::string to an uint8_t array.

This was made for people that want to use MemJect for injecting their dll, encrypting becomes a thing and dumbasses won't do anything.

It converts:

std::string bytes = "0x4d, 0x5a, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0xff, 0xff";

To:

uint8_t g_binary[] = { 0x4d, 0x5a, 0x80, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x10, 0x00, 0xff, 0xff };

About

Converts an std::string byte array to an uint8_t byte array.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages