passforios-gopenpgp/constants/armor.go

11 lines
290 B
Go
Raw Normal View History

2019-03-07 16:56:12 +01:00
package constants
// Definitions for armored data
const (
2019-05-14 22:04:55 +02:00
ArmorHeaderVersion = "GopenPGP 0.0.1 (" + Version + ")"
2019-05-15 11:37:57 +02:00
ArmorHeaderComment = "https://gopenpgp.org"
2019-03-07 16:56:12 +01:00
PGPMessageHeader = "PGP MESSAGE"
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
)