passforios-gopenpgp/constants/armor.go

13 lines
374 B
Go
Raw Normal View History

2019-05-15 14:57:35 +02:00
// Package constants provides a set of common OpenPGP constants.
2019-03-07 16:56:12 +01:00
package constants
2019-05-15 14:57:35 +02:00
// Constants for armored data.
2019-03-07 16:56:12 +01:00
const (
2022-03-01 11:42:00 +01:00
ArmorHeaderVersion = "GopenPGP 2.4.5"
2019-05-15 11:37:57 +02:00
ArmorHeaderComment = "https://gopenpgp.org"
2019-03-07 16:56:12 +01:00
PGPMessageHeader = "PGP MESSAGE"
PGPSignatureHeader = "PGP SIGNATURE"
2019-03-07 16:56:12 +01:00
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
)