aboutsummaryrefslogtreecommitdiff
path: root/b64file/file.go
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-08-04 23:41:08 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-08-04 23:41:08 +0200
commit245a41f1fa992fefb396fc4591a2bbdd6858e525 (patch)
tree7f5d0ca929f2af891205f49f918d2222f0c8a7ce /b64file/file.go
parent8084465e13ee600c733b709059dfbaa753603674 (diff)
Split names
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: '")