12 lines
370 B
Go
12 lines
370 B
Go
package go_encryption
|
|
|
|
const (
|
|
// defaultEncryptionKey is the (randomly chosen) default private encryption key.
|
|
defaultEncryptionKey = "315C63352A0134453159B3352401F445FA596335240134B5315963D524013445"
|
|
)
|
|
|
|
var (
|
|
// defaultContext represents the nonce as used during de-/encryption and must be between 12 and 16 bytes long
|
|
defaultContext = []byte("SaRociSolutions")
|
|
)
|