[#170] checksum: Use constant mapping for checksum types
DCO / DCO (pull_request) Successful in 1m8s Details
Tests and linters / Lint (pull_request) Successful in 1m22s Details
Tests and linters / Tests (1.19) (pull_request) Successful in 1m43s Details
Tests and linters / Tests (1.20) (pull_request) Successful in 1m39s Details

Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
pull/170/head
Airat Arifullin 2023-09-28 17:18:36 +03:00
parent 99c273f499
commit 84b9d29fc9
1 changed files with 4 additions and 4 deletions

View File

@ -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