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 (
|
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"
|
|
|
|
|
)
|