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 (
|
2020-11-16 09:51:51 +01:00
|
|
|
ArmorHeaderVersion = "GopenPGP 2.1.1"
|
2019-05-15 11:37:57 +02:00
|
|
|
ArmorHeaderComment = "https://gopenpgp.org"
|
2019-03-07 16:56:12 +01:00
|
|
|
PGPMessageHeader = "PGP MESSAGE"
|
2019-06-03 17:00:01 +02:00
|
|
|
PGPSignatureHeader = "PGP SIGNATURE"
|
2019-03-07 16:56:12 +01:00
|
|
|
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
|
|
|
|
|
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
|
|
|
|
|
)
|