mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
13 lines
374 B
Go
13 lines
374 B
Go
// Package constants provides a set of common OpenPGP constants.
|
|
package constants
|
|
|
|
// Constants for armored data.
|
|
const (
|
|
ArmorHeaderVersion = "GopenPGP 2.4.7"
|
|
ArmorHeaderComment = "https://gopenpgp.org"
|
|
PGPMessageHeader = "PGP MESSAGE"
|
|
PGPSignatureHeader = "PGP SIGNATURE"
|
|
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
|
|
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
|
|
)
|