forked from TrueCloudLab/frostfs-sdk-go
[#170] checksum: Use constant mapping for checksum types
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
This commit is contained in:
parent
99c273f499
commit
84b9d29fc9
1 changed files with 4 additions and 4 deletions
|
@ -24,17 +24,17 @@ type Checksum refs.Checksum
|
|||
|
||||
// Type represents the enumeration
|
||||
// of checksum types.
|
||||
type Type uint8
|
||||
type Type refs.ChecksumType
|
||||
|
||||
const (
|
||||
// Unknown is an undefined checksum type.
|
||||
Unknown Type = iota
|
||||
Unknown Type = Type(refs.UnknownChecksum)
|
||||
|
||||
// SHA256 is a SHA256 checksum type.
|
||||
SHA256
|
||||
SHA256 = Type(refs.SHA256)
|
||||
|
||||
// TZ is a Tillich-Zémor checksum type.
|
||||
TZ
|
||||
TZ = Type(refs.TillichZemor)
|
||||
)
|
||||
|
||||
// ReadFromV2 reads Checksum from the refs.Checksum message. Checks if the
|
||||
|
|
Loading…
Reference in a new issue