Crypto

Encryption

Useful websites

Address
Explanation

https://www.dcode.fr/

encryption and decryption

https://crackstation.net/

Decoding

https://gchq.github.io/CyberChef/

encryption and decryption and …

https://www.base64encode.org/

base64 encoding

https://www.base64decode.org/

base64 decoding

http://rumkin.com/tools/cipher/caesar.php

Decode caesar

https://www.unphp.net

deobfuscate php code

Decode Fernet

https://asecuritysite.com/encryption/ferdecode

Or

from cryptography.fernet import Fernet
key = ""
token = ""
cipher = Fernet(key)
decoded = cipher.decrypt(token)

Decode the Malbolge language

Decode Dvorak format keyboards

Decode DTFM

Decrypt bcrypt

Decode Cistercian numbers

Convert Multi-tap Phone Code to letters

Decode xor message

Attack on PKCS#1 in RSA

Types of attacks on RSA

For example, decryption of flag.enc file by public key without private key

Decode Vigenere Decoder

Base64 decoding in terminal

Last updated