aboutsummaryrefslogtreecommitdiffhomepage
path: root/fst/shared.go
diff options
context:
space:
mode:
Diffstat (limited to 'fst/shared.go')
-rw-r--r--fst/shared.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/fst/shared.go b/fst/shared.go
index 39544863..ae59b236 100644
--- a/fst/shared.go
+++ b/fst/shared.go
@@ -1,18 +1,2 @@
// Package fst exports shared fortify types.
package fst
-
-import (
- "crypto/rand"
- "encoding/hex"
-)
-
-type ID [16]byte
-
-func (a *ID) String() string {
- return hex.EncodeToString(a[:])
-}
-
-func NewAppID(id *ID) error {
- _, err := rand.Read(id[:])
- return err
-}