aboutsummaryrefslogtreecommitdiff
path: root/b64file/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'b64file/file.go')
-rw-r--r--b64file/file.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/b64file/file.go b/b64file/file.go
index ebca8fe..9254303 100644
--- a/b64file/file.go
+++ b/b64file/file.go
@@ -1,4 +1,4 @@
-// Package file implements signify file format
+// Package b64file implements signify file format
package b64file
import (
@@ -14,12 +14,7 @@ import (
"strings"
)
-const (
- ModeSec os.FileMode = 0600
- ModePub os.FileMode = 0644
- ModeSig os.FileMode = 0644
- untrusted = "untrusted comment: "
-)
+const untrusted = "untrusted comment: "
// Original Error: "invalid comment in %s; must start with 'untrusted comment: '"
var ErrUntrusted = errors.New("comment must start with 'untrusted comment: '")