-
public interface Hash.Native
-
-
Method Summary
Modifier and Type Method Description abstract booleancryptoHashSha256(Array<byte> out, Array<byte> in, int inLen)abstract booleancryptoHashSha512(Array<byte> out, Array<byte> in, int inLen)abstract booleancryptoHashSha256Init(Hash.State256 state)abstract booleancryptoHashSha256Update(Hash.State256 state, Array<byte> in, int inLen)abstract booleancryptoHashSha256Final(Hash.State256 state, Array<byte> out)abstract booleancryptoHashSha512Init(Hash.State512 state)abstract booleancryptoHashSha512Update(Hash.State512 state, Array<byte> in, int inLen)abstract booleancryptoHashSha512Final(Hash.State512 state, Array<byte> out)-
-
Method Detail
-
cryptoHashSha256
abstract boolean cryptoHashSha256(Array<byte> out, Array<byte> in, int inLen)
-
cryptoHashSha512
abstract boolean cryptoHashSha512(Array<byte> out, Array<byte> in, int inLen)
-
cryptoHashSha256Init
abstract boolean cryptoHashSha256Init(Hash.State256 state)
-
cryptoHashSha256Update
abstract boolean cryptoHashSha256Update(Hash.State256 state, Array<byte> in, int inLen)
-
cryptoHashSha256Final
abstract boolean cryptoHashSha256Final(Hash.State256 state, Array<byte> out)
-
cryptoHashSha512Init
abstract boolean cryptoHashSha512Init(Hash.State512 state)
-
cryptoHashSha512Update
abstract boolean cryptoHashSha512Update(Hash.State512 state, Array<byte> in, int inLen)
-
cryptoHashSha512Final
abstract boolean cryptoHashSha512Final(Hash.State512 state, Array<byte> out)
-
-
-
-