Skip to content

Instantly share code, notes, and snippets.

View astroDev18's full-sized avatar
🕹️
Learning C++

Isa astroDev18

🕹️
Learning C++
  • Atlanta, Georgia
  • 09:55 (UTC -12:00)
View GitHub Profile
@astroDev18
astroDev18 / Telnet AES Encrypter
Last active November 2, 2021 11:46
Building out AES-256 bit encryption in Go, also added in telenet so a user can connect to the local port and access the program. To run use 'go run server.go 8080' and then connect to it on a separate terminal with telenet localhost 8080 and then just type in your text. Enjoy!
package main
import (
"bufio"
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/hex"
"fmt"
"io"