aboutsummaryrefslogtreecommitdiffhomepage
path: root/fst/shared.go
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-12-19 18:19:47 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-12-19 18:19:47 +0900
commit5ea7333431942780c79c02a990682e44b6834ed6 (patch)
tree28abe7af49bb11b71f91cff55d4aa1ea1614ae5c /fst/shared.go
parentf796622c35ad15f4a8d2e91fb0437f566fc77e52 (diff)
fst: implement app id parser
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
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
-}