MCPcopy Create free account
hub / github.com/Yeuoly/0xUBypass / P

Function P

WindowsShellcodeInjector/RSA.cpp:248–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246}
247
248void P(BigUint src, size_t bits, uint8_t *dst) {
249 for (int i = 0; i < bits / 8; i++) {
250 BigUint unit = src & 0xff;
251 dst[i] = (uint8_t)unit.get_ui();
252 src >>= 8;
253 }
254}
255
256void U(uint8_t *src, size_t bits, BigUint &dst) {
257 dst = 0;

Callers 2

EncryptShellMethod · 0.85
DecryptShellMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected