This repository has been archived on 2020-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
libricochet-go/utils/crypto.go

67 lines
1.8 KiB
Go
Raw Permalink Normal View History

2017-05-02 23:33:51 +00:00
package utils
import (
"crypto/rand"
2017-05-02 23:33:51 +00:00
"crypto/rsa"
"crypto/x509"
"encoding/pem"
2018-09-22 20:12:08 +00:00
"golang.org/x/crypto/ed25519"
"io/ioutil"
"math"
"math/big"
2017-05-02 23:33:51 +00:00
)
const (
2018-01-08 19:01:23 +00:00
// InvalidPrivateKeyFileError is a library error, thrown when the given key file fials to load
InvalidPrivateKeyFileError = Error("InvalidPrivateKeyFileError")
2018-01-08 19:01:23 +00:00
// RicochetKeySize - tor onion services currently use rsa key sizes of 1024 bits
RicochetKeySize = 1024
)
2018-05-09 19:40:07 +00:00
// GetRandNumber is a helper function which returns a random integer, this is
2018-01-17 18:18:46 +00:00
// currently mostly used to generate messageids
func GetRandNumber() *big.Int {
2018-01-12 18:04:20 +00:00
num, err := rand.Int(rand.Reader, big.NewInt(math.MaxUint32))
// If we can't generate random numbers then panicking is probably
// the best option.
CheckError(err)
return num
}
// GeneratePrivateKeyV3 cryptographically creats a new ed25519 key pair.
func GeneratePrivateKeyV3() (ed25519.PublicKey, ed25519.PrivateKey, error) {
return ed25519.GenerateKey(rand.Reader)
}
2017-05-02 23:33:51 +00:00
// LoadPrivateKeyFromFile loads a private key from a file...
func LoadPrivateKeyFromFile(filename string) (*rsa.PrivateKey, error) {
pemData, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
return ParsePrivateKey(pemData)
}
2018-01-08 19:01:23 +00:00
// ParsePrivateKey Convert a private key string to a usable private key
func ParsePrivateKey(pemData []byte) (*rsa.PrivateKey, error) {
2017-05-02 23:33:51 +00:00
block, _ := pem.Decode(pemData)
if block == nil || block.Type != "RSA PRIVATE KEY" {
return nil, InvalidPrivateKeyFileError
2017-05-02 23:33:51 +00:00
}
return x509.ParsePKCS1PrivateKey(block.Bytes)
}
2018-01-08 19:01:23 +00:00
// PrivateKeyToString turns a private key into storable string
func PrivateKeyToString(privateKey *rsa.PrivateKey) string {
privateKeyBlock := pem.Block{
Type: "RSA PRIVATE KEY",
Headers: nil,
Bytes: x509.MarshalPKCS1PrivateKey(privateKey),
}
return string(pem.EncodeToMemory(&privateKeyBlock))
}