A
A
Abve2018-07-02 23:04:02
reverse engineering
Abve, 2018-07-02 23:04:02

How to decrypt this algorithm: BASE64(NOT(XOR(28)))?

Password: gpDWtrjHs5Oa2YSFiaTeoQ==

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
SagePtr, 2018-07-02
@Abve

Something like this (puff):

$str = base64_decode('gpDWtrjHs5Oa2YSFiaTeoQ==');
for ($i = 0; $i < strlen($str); $i++) {
  echo chr(~ord($str[$i]) ^ 28);
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question