Reverse/bishop_crackme_05/solve.md
2024-10-03 15:54:24 +08:00

24 lines
305 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

跳过了这个作者好几个vb4的crackme因为太老了没工具...
1. 去NAG
```
102BC:00->01
1030C:01->00
```
2. Serial算法
```c#
long result = 0;
foreach (char c in name)
{
int ci = c;
result += ci * ci;
}
result += result * result;
```