lib/rbnacl/hash/sha512.rb in rbnacl-3.1.2 vs lib/rbnacl/hash/sha512.rb in rbnacl-3.2.0
- old
+ new
@@ -2,14 +2,14 @@
module RbNaCl
module Hash
# Provides the binding for the SHA512 hash function
module SHA512
extend Sodium
- sodium_type :hash
+ sodium_type :hash
sodium_primitive :sha512
- sodium_constant :BYTES
- sodium_function :hash_sha512,
- :crypto_hash_sha512,
- [:pointer, :pointer, :ulong_long]
+ sodium_constant :BYTES
+ sodium_function :hash_sha512,
+ :crypto_hash_sha512,
+ [:pointer, :pointer, :ulong_long]
end
end
end