18 lines
350 B
Go
18 lines
350 B
Go
|
// Copyright (C) 2019 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
package pkcrypto
|
||
|
|
||
|
import (
|
||
|
"crypto"
|
||
|
)
|
||
|
|
||
|
// SHA256Hash calculates the SHA256 hash of the input data
|
||
|
func SHA256Hash(data []byte) ([]byte, error) {
|
||
|
hash := crypto.SHA256.New()
|
||
|
if _, err := hash.Write(data); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return hash.Sum(nil), nil
|
||
|
}
|