MCPcopy
hub / github.com/minio/minio-go / Raw

Method Raw

checksum.go:390–395  ·  view source on GitHub ↗

Raw returns the raw checksum value if set.

()

Source from the content-addressed store, hash-verified

388
389// Raw returns the raw checksum value if set.
390func (c Checksum) Raw() []byte {
391 if !c.IsSet() {
392 return nil
393 }
394 return c.r
395}
396
397// CompositeChecksum returns the composite checksum of all provided parts.
398func (c ChecksumType) CompositeChecksum(p []ObjectPart) (*Checksum, error) {

Callers

nothing calls this directly

Calls 1

IsSetMethod · 0.95

Tested by

no test coverage detected