You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when compiling few errors occur here is how to solve them (Not familiar with github so ill put them in Issues)
1:
replace: static u_char obfKey[8] = {23,82,107,6,35,78,88,7};
with: static unsigned char obfKey[8] = {23,82,107,6,35,78,88,7};
2:
add #include <stdint.h> to headers
The text was updated successfully, but these errors were encountered:
when compiling few errors occur here is how to solve them (Not familiar with github so ill put them in Issues)
1:
replace: static u_char obfKey[8] = {23,82,107,6,35,78,88,7};
with: static unsigned char obfKey[8] = {23,82,107,6,35,78,88,7};
2:
add #include <stdint.h> to headers
The text was updated successfully, but these errors were encountered: