166 lines
4.3 KiB
Go
166 lines
4.3 KiB
Go
// Package keygen provides the AES key initializer function.
|
|
package keygen
|
|
|
|
import (
|
|
"crypto"
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"crypto/rand"
|
|
"crypto/rsa"
|
|
"crypto/x509"
|
|
"encoding/pem"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"code.nonshy.com/nonshy/website/pkg/log"
|
|
)
|
|
|
|
// NewAESKey returns a 32-byte (AES 256 bit) encryption key.
|
|
func NewAESKey() ([]byte, error) {
|
|
var result = make([]byte, 32)
|
|
_, err := rand.Read(result)
|
|
return result, err
|
|
}
|
|
|
|
// EncryptWithAESKey a byte stream using a given AES key.
|
|
func EncryptWithAESKey(input []byte, key []byte) ([]byte, error) {
|
|
// Generate a new AES cipher.
|
|
c, err := aes.NewCipher(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// gcm or Galois/Counter Mode
|
|
gcm, err := cipher.NewGCM(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Create a new byte array the size of the GCM nonce
|
|
// which must be passed to Seal.
|
|
nonce := make([]byte, gcm.NonceSize())
|
|
if _, err := io.ReadFull(rand.Reader, nonce); err != nil {
|
|
return nil, fmt.Errorf("populating the nonce: %s", err)
|
|
}
|
|
|
|
// Encrypt the text using the Seal function.
|
|
// Seal encrypts and authenticates plaintext, authenticates the
|
|
// additional data and appends the result to dst, returning the
|
|
// updated slice. The nonce must be NonceSize() bytes long and
|
|
// unique for all time, for a given key.
|
|
result := gcm.Seal(nonce, nonce, input, nil)
|
|
return result, nil
|
|
}
|
|
|
|
func DecryptWithAESKey(data []byte, key []byte) ([]byte, error) {
|
|
c, err := aes.NewCipher(key)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
gcm, err := cipher.NewGCM(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
nonceSize := gcm.NonceSize()
|
|
if len(data) < nonceSize {
|
|
return nil, errors.New("ciphertext data less than nonceSize")
|
|
}
|
|
|
|
nonce, ciphertext := data[:nonceSize], data[nonceSize:]
|
|
plaintext, err := gcm.Open(nil, nonce, ciphertext, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return plaintext, nil
|
|
}
|
|
|
|
// NewRSAKeys will generate an RSA 2048-bit key pair.
|
|
func NewRSAKeys() (*rsa.PrivateKey, error) {
|
|
privateKey, err := rsa.GenerateKey(rand.Reader, 2048)
|
|
return privateKey, err
|
|
}
|
|
|
|
// SerializePublicKey converts an RSA public key into an x509 PEM encoded byte string.
|
|
func SerializePublicKey(publicKey crypto.PublicKey) ([]byte, error) {
|
|
// Encode the public key to PEM format.
|
|
x509EncodedPub, err := x509.MarshalPKIXPublicKey(publicKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
pemEncodedPub := pem.EncodeToMemory(&pem.Block{
|
|
Type: "RSA PUBLIC KEY",
|
|
Bytes: x509EncodedPub,
|
|
})
|
|
return pemEncodedPub, nil
|
|
}
|
|
|
|
// DeserializePublicKey loads the RSA public key from the PEM encoded byte array.
|
|
func DeserializePublicKey(pemEncodedPub []byte) (*rsa.PublicKey, error) {
|
|
// Decode the public key.
|
|
log.Error("decode public key: %s", pemEncodedPub)
|
|
blockPub, _ := pem.Decode(pemEncodedPub)
|
|
x509EncodedPub := blockPub.Bytes
|
|
genericPublicKey, err := x509.ParsePKIXPublicKey(x509EncodedPub)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
publicKey := genericPublicKey.(*rsa.PublicKey)
|
|
return publicKey, nil
|
|
}
|
|
|
|
// WriteRSAKeys writes the public and private RSA keys to .pem files on disk.
|
|
func WriteRSAKeys(key *rsa.PrivateKey, privateFile, publicFile string) error {
|
|
// Encode the private key to PEM format.
|
|
x509Encoded := x509.MarshalPKCS1PrivateKey(key)
|
|
pemEncoded := pem.EncodeToMemory(&pem.Block{
|
|
Type: "RSA PRIVATE KEY",
|
|
Bytes: x509Encoded,
|
|
})
|
|
|
|
// Encode the public key to PEM format.
|
|
pemEncodedPub, err := SerializePublicKey(key.Public())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Write the files.
|
|
if err := os.WriteFile(privateFile, pemEncoded, 0600); err != nil {
|
|
return err
|
|
}
|
|
if err := os.WriteFile(publicFile, pemEncodedPub, 0644); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// PrivateKeyFromFile loads the private key from disk.
|
|
func PrivateKeyFromFile(privateFile string) (*rsa.PrivateKey, error) {
|
|
// Read the private key file.
|
|
pemEncoded, err := os.ReadFile(privateFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Decode the private key.
|
|
block, _ := pem.Decode(pemEncoded)
|
|
x509Encoded := block.Bytes
|
|
privateKey, _ := x509.ParsePKCS1PrivateKey(x509Encoded)
|
|
return privateKey, nil
|
|
}
|
|
|
|
// PublicKeyFromFile loads the public key from disk.
|
|
func PublicKeyFromFile(publicFile string) (*rsa.PublicKey, error) {
|
|
pemEncodedPub, err := os.ReadFile(publicFile)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Decode the public key.
|
|
return DeserializePublicKey(pemEncodedPub)
|
|
}
|