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),
config: c,
}
t.String() // set the string so it's faster to recall
return t
}
@ -110,7 +109,7 @@ func (c *Config) Gen() TinD {
}
t := TinD{
bytes: bytes,
runes: runes,
runes: runes,
config: c,
}
return t
@ -124,7 +123,7 @@ func (c *Config) FromString(in string) (TinD, error) {
return c.Zero(), errors.New("given id isn't the same size as the configuration")
}
t := TinD{
bytes: make([]byte, c.size),
bytes: make([]byte, c.size),
config: c,
}
r := []rune(in)
@ -138,3 +137,14 @@ func (c *Config) FromString(in string) (TinD, error) {
}
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
}