22 lines
643 B
Go
22 lines
643 B
Go
package internal
|
|
|
|
import (
|
|
"github.com/ProtonMail/go-pm-crypto/constants"
|
|
"regexp"
|
|
)
|
|
|
|
// TrimNewlines removes a whitespace in the end of string (don't stop on linebreak)
|
|
func TrimNewlines(input string) string {
|
|
var re = regexp.MustCompile(`(?m)[ \t]*$`)
|
|
return re.ReplaceAllString(input, "")
|
|
}
|
|
|
|
// CreationTimeOffset stores the amount of seconds that a signature may be
|
|
// created in the future, to compensate for clock skew
|
|
const CreationTimeOffset = int64(60 * 60 * 24 * 2)
|
|
|
|
// ArmorHeaders from golang pm-crypto
|
|
var ArmorHeaders = map[string]string{
|
|
"Version": constants.ArmorHeaderVersion,
|
|
"Comment": constants.ArmorHeaderComment,
|
|
}
|