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 + ")"
|
|
|
|
|
ArmorHeaderComment = "https://github.com/ProtonMail/gopenpgp"
|
2019-03-07 16:56:12 +01:00
|
|
|
PGPMessageHeader = "PGP MESSAGE"
|
|
|
|
|
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
|
|
|
|
|
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
|
|
|
|
|
)
|