fix compile

This commit is contained in:
Jakub 2019-03-07 16:56:12 +01:00
parent 35a4e32efb
commit 36b497d591
11 changed files with 73 additions and 76 deletions

10
constants/armor.go Normal file
View file

@ -0,0 +1,10 @@
package constants
// Definitions for armored data
const (
ArmorHeaderVersion = "Pmcrypto Golang 0.0.1 (" + Version + ")"
ArmorHeaderComment = "https://protonmail.com"
PGPMessageHeader = "PGP MESSAGE"
PublicKeyHeader = "PGP PUBLIC KEY BLOCK"
PrivateKeyHeader = "PGP PRIVATE KEY BLOCK"
)