Mercurial > hg > Database > Christie
view src/main/java/christie/blockchain/HashUtil.java @ 121:8949d0ecf1f6
refactor Topology
author | akahori |
---|---|
date | Tue, 11 Dec 2018 15:46:09 +0900 |
parents | eab161e557bd |
children | 0ef25958ac04 |
line wrap: on
line source
package christie.blockchain; import org.bouncycastle.crypto.digests.*; public class HashUtil { public byte[] sha256(byte[] input) { SHA256Digest digest = new SHA256Digest(); byte[] resBuf = new byte[digest.getDigestSize()]; if(input != null) { digest.update(input, 0, input.length); digest.doFinal(resBuf, 0); }else{ throw new NullPointerException("Can't sha256 input is null."); } return resBuf; } public byte[] sha3(byte[] input){ SHA3Digest digest = new SHA3Digest(); byte[] resBuf = new byte[digest.getDigestSize()]; if(input != null) { digest.update(input, 0, input.length); digest.doFinal(resBuf, 0); }else{ throw new NullPointerException("Can't sha3 input is null."); } return resBuf; } public byte[] ripemd160(byte[] input){ RIPEMD160Digest digest = new RIPEMD160Digest(); byte[] resBuf = new byte[digest.getDigestSize()]; if(input != null) { digest.update(input, 0, input.length); digest.doFinal(resBuf, 0); }else{ throw new NullPointerException("Can't ripemd160 input is null."); } return resBuf; } }