github.com/code-to-go/safepool.lib@v0.0.0-20221205180519-ee25e63c226e/pool/encryption.go (about)

     1  package pool
     2  
     3  type Header struct {
     4  	Version float32 `json:"v"`
     5  	Thread  uint64  `json:"t"`
     6  	Key     uint64  `json:"k"`
     7  	Hash    []byte  `json:"h"`
     8  	Name    string  `json:"s"`
     9  }