add method to load from bytes

This commit is contained in:
Matthew Stobbs 2024-02-22 21:18:46 -07:00
parent 79c235de31
commit e2d0cb303e

View File

@ -91,7 +91,6 @@ func (c *Config) Zero() TinD {
bytes: make([]byte, c.size), bytes: make([]byte, c.size),
config: c, config: c,
} }
t.String() // set the string so it's faster to recall
return t return t
} }
@ -138,3 +137,14 @@ func (c *Config) FromString(in string) (TinD, error) {
} }
return TinD(t), nil return TinD(t), nil
} }
func (c *Config) Load(in []byte) (TinD, error) {
if len(in) != c.size {
return c.Zero(), errors.New("given id isn't the same size as the configuration")
}
t := TinD{
bytes: in,
config: c,
}
return t, nil
}