Created
January 19, 2023 22:11
-
-
Save PixelMelt/c8d463bd6a5be1b8bce117463425b276 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"encoding/base64" | |
"errors" | |
"fmt" | |
"log" | |
) | |
var ( | |
cryptKey = []byte{ | |
0x9c, 0x93, 0x5b, 0x48, 0x73, 0x0a, 0x55, 0x4d, | |
0x6b, 0xfd, 0x7c, 0x63, 0xc8, 0x86, 0xa9, 0x2b, | |
0xd3, 0x90, 0x19, 0x8e, 0xb8, 0x12, 0x8a, 0xfb, | |
0xf4, 0xde, 0x16, 0x2b, 0x8b, 0x95, 0xf6, 0x38, | |
} | |
cryptBlock cipher.Block | |
cryptRand = rand.Reader | |
) | |
func crypt(out, in, iv []byte) error { | |
if cryptBlock == nil { | |
var err error | |
cryptBlock, err = aes.NewCipher(cryptKey) | |
if err != nil { | |
return err | |
} | |
} | |
stream := cipher.NewCTR(cryptBlock, iv) | |
stream.XORKeyStream(out, in) | |
return nil | |
} | |
func Reveal(x string) (string, error) { | |
ciphertext, err := base64.RawURLEncoding.DecodeString(x) | |
if err != nil { | |
return "", fmt.Errorf("base64 decode failed when revealing password - is it obscured?: %w", err) | |
} | |
if len(ciphertext) < aes.BlockSize { | |
return "", errors.New("input too short when revealing password - is it obscured?") | |
} | |
buf := ciphertext[aes.BlockSize:] | |
iv := ciphertext[:aes.BlockSize] | |
if err := crypt(buf, buf, iv); err != nil { | |
return "", fmt.Errorf("decrypt failed when revealing password - is it obscured?: %w", err) | |
} | |
return string(buf), nil | |
} | |
func MustReveal(x string) string { | |
out, err := Reveal(x) | |
if err != nil { | |
log.Fatalf("Reveal failed: %v", err) | |
} | |
return out | |
} | |
func main() { | |
plaintext, err := Reveal("CRYPTED VALUE") | |
if err != nil { | |
log.Fatalf("Reveal failed: %v", err) | |
} | |
fmt.Println(plaintext) | |
fmt.Println("Original String: ", plaintext) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment