Added the SHA512 algorithm.
parent
0c185d23a5
commit
a97a047010
@ -0,0 +1,21 @@
|
||||
package sha512
|
||||
|
||||
import (
|
||||
// Standard
|
||||
"crypto/sha512"
|
||||
"crypto/subtle"
|
||||
)
|
||||
|
||||
// Check Hash
|
||||
func (Algorithm) CheckHash(data []byte, hashToCheck []byte) (bool, error) {
|
||||
// Hasher
|
||||
hasher := sha512.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 sha512
|
||||
|
||||
import (
|
||||
// Standard
|
||||
"crypto/sha512"
|
||||
)
|
||||
|
||||
// Hash
|
||||
func (Algorithm) Hash(data []byte) ([]byte, error) {
|
||||
// Hasher
|
||||
hasher := sha512.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 sha512
|
||||
|
||||
// Algorithm
|
||||
type Algorithm struct{}
|
||||
|
||||
// New
|
||||
func New(size int) Algorithm {
|
||||
// Return Algorithm
|
||||
return Algorithm{}
|
||||
}
|
Loading…
Reference in New Issue