You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cryptpng/cryptpng.go

156 lines
3.6 KiB
Go

package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"crypto/sha512"
"encoding/base64"
"errors"
"flag"
"fmt"
"io"
"io/ioutil"
"log"
"os"
"syscall"
"golang.org/x/crypto/ssh/terminal"
)
func check(err error) {
if err != nil {
log.Fatal(err)
}
}
const chunkName = "crPt"
var inputFile string
var outputFile string
var imageFile string
var decryptImage bool
func main() {
flag.StringVar(&imageFile, "image", "image.png", "The path of the png file.")
flag.BoolVar(&decryptImage, "decrypt", false, "If the input image should be decrypted.")
flag.StringVar(&outputFile, "out", "out.png", "The output file for the encrypted/decrypted data.")
flag.StringVar(&inputFile, "in", "input.txt","The file with the input data.")
flag.Parse()
if decryptImage {
f, err := os.Open(imageFile)
check(err)
defer f.Close()
check(err)
fout, err := os.Create(outputFile)
check(err)
defer fout.Close()
DecryptDataPng(f, fout)
} else {
f, err := os.Open(imageFile)
check(err)
defer f.Close()
check(err)
fout, err := os.Create(outputFile)
check(err)
defer fout.Close()
fin, err := os.Open(inputFile)
check(err)
defer fin.Close()
EncryptDataPng(f, fin, fout)
}
}
// encrypts the data of fin inside the png (f) and writes it to fout
func EncryptDataPng(f *os.File, fin *os.File, fout *os.File) {
png := PngData{}
err := png.Read(f)
check(err)
inputData, err := ioutil.ReadAll(fin)
check(err)
inputData, err = encryptData(inputData)
check(err)
cryptChunk := CreateChunk(inputData, chunkName)
png.AddMetaChunk(cryptChunk)
err = png.Write(fout)
check(err)
}
// Decrypts the data from a png file
func DecryptDataPng(f *os.File, fout *os.File) {
png := PngData{}
err := png.Read(f)
check(err)
cryptChunk := png.GetChunk(chunkName)
if cryptChunk != nil {
data, err := decryptData(cryptChunk.data)
if err != nil {
log.Println("\nThe provided password is probably incorrect.")
}
check(err)
_, err = fout.Write(data)
check(err)
} else {
log.Fatal("no encrypted data inside the input image")
}
}
// creates an encrypted png chunk
func encryptData(data []byte) ([]byte, error) {
key := readPassword()
return encrypt(key, data)
}
// decrypts the data of a png chunk
func decryptData(data []byte) ([]byte, error) {
key := readPassword()
return decrypt(key, data)
}
// reads a password from the terminal
// turns off the input for the typing of the password
func readPassword() []byte {
fmt.Print("Password: ")
bytePw, err := terminal.ReadPassword(int(syscall.Stdin))
check(err)
hash := sha512.New512_256()
hash.Write(bytePw)
return hash.Sum(nil)
}
// encrypt and decrypt functions taken from
// https://stackoverflow.com/questions/18817336/golang-encrypting-a-string-with-aes-and-base64
func encrypt(key, text []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
b := base64.StdEncoding.EncodeToString(text)
cipherText := make([]byte, aes.BlockSize+len(b))
iv := cipherText[:aes.BlockSize]
if _, err := io.ReadFull(rand.Reader, iv); err != nil {
return nil, err
}
cfb := cipher.NewCFBEncrypter(block, iv)
cfb.XORKeyStream(cipherText[aes.BlockSize:], []byte(b))
return cipherText, nil
}
func decrypt(key, text []byte) ([]byte, error) {
block, err := aes.NewCipher(key)
if err != nil {
return nil, err
}
if len(text) < aes.BlockSize {
return nil, errors.New("ciphertext too short")
}
iv := text[:aes.BlockSize]
text = text[aes.BlockSize:]
cfb := cipher.NewCFBDecrypter(block, iv)
cfb.XORKeyStream(text, text)
data, err := base64.StdEncoding.DecodeString(string(text))
if err != nil {
return nil, err
}
return data, nil
}