Added the SHA256 algorithm.
parent
4b51809ce9
commit
0c185d23a5
@ -0,0 +1,21 @@
|
||||
package sha256
|
||||
|
||||
import (
|
||||
// Standard
|
||||
"crypto/sha256"
|
||||
"crypto/subtle"
|
||||
)
|
||||
|
||||
// Check Hash
|
||||
func (Algorithm) CheckHash(data []byte, hashToCheck []byte) (bool, error) {
|
||||
// Hasher
|
||||
hasher := sha256.New()
|
||||
// Write To Hasher
|
||||
_, err := hasher.Write(data)
|
||||
// Handle Error
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
// Return Hash
|
||||
return subtle.ConstantTimeCompare(hasher.Sum(nil), hashToCheck) == 1, err
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package sha256
|
||||
|
||||
import (
|
||||
// Standard
|
||||
"crypto/sha256"
|
||||
)
|
||||
|
||||
// Hash
|
||||
func (Algorithm) Hash(data []byte) ([]byte, error) {
|
||||
// Hasher
|
||||
hasher := sha256.New()
|
||||
// Write To Hasher
|
||||
_, err := hasher.Write(data)
|
||||
// Handle Error
|
||||
if err != nil {
|
||||
return []byte(""), err
|
||||
}
|
||||
// Return Hash
|
||||
return hasher.Sum(nil), err
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package sha256
|
||||
|
||||
// Algorithm
|
||||
type Algorithm struct{}
|
||||
|
||||
// New
|
||||
func New(size int) Algorithm {
|
||||
// Return Algorithm
|
||||
return Algorithm{}
|
||||
}
|
Loading…
Reference in New Issue