Spaces:
Sleeping
Sleeping
File size: 220 Bytes
633934d | 1 2 3 4 5 6 7 8 9 10 11 12 | __int64 __fastcall encrypt(__int64 a1)
{
int i; // [rsp+18h] [rbp-18h]
for ( i = 0; i < strlen(secret); ++i )
{
if ( (8 * *(char *)(i + a1) + 19) % 61 + 65 != secret[i] )
return 0LL;
}
return 1LL;
}
|