passforios-gopenpgp/constants/armor.go

11 lines
299 B
Go
Raw Normal View History

2019-03-07 16:56:12 +01:00
package constants
// Definitions for armored data
const (
ArmorHeaderVersion = "Pmcrypto Golang 0.0.1 (" + Version + ")"
ArmorHeaderComment = "https://protonmail.com"
PGPMessageHeader = "PGP MESSAGE"
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
)