All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.crypto.digests.SHA3Digest Maven / Gradle / Ivy

Go to download

The Long Term Stable (LTS) Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains the JCA/JCE provider and low-level API for the BC LTS version 2.73.1 for Java 8 and later.

There is a newer version: 2.73.6
Show newest version
package org.bouncycastle.crypto.digests;


import org.bouncycastle.crypto.CryptoServicePurpose;

/**
 * implementation of SHA-3 based on following KeccakNISTInterface.c from https://keccak.noekeon.org/
 * 

* Following the naming conventions used in the C source code to enable easy review of the implementation. */ public class SHA3Digest extends KeccakDigest { private static int checkBitLength(int bitLength) { switch (bitLength) { case 224: case 256: case 384: case 512: return bitLength; default: throw new IllegalArgumentException("'bitLength' " + bitLength + " not supported for SHA-3"); } } public SHA3Digest() { this(256, CryptoServicePurpose.ANY); } public SHA3Digest(CryptoServicePurpose purpose) { this(256, purpose); } public SHA3Digest(int bitLength) { super(checkBitLength(bitLength), CryptoServicePurpose.ANY); } public SHA3Digest(int bitLength, CryptoServicePurpose purpose) { super(checkBitLength(bitLength), purpose); } public SHA3Digest(SHA3Digest source) { super(source); } public String getAlgorithmName() { return "SHA3-" + fixedOutputLength; } public int doFinal(byte[] out, int outOff) { absorbBits(0x02, 2); return super.doFinal(out, outOff); } /* * TODO Possible API change to support partial-byte suffixes. */ protected int doFinal(byte[] out, int outOff, byte partialByte, int partialBits) { if (partialBits < 0 || partialBits > 7) { throw new IllegalArgumentException("'partialBits' must be in the range [0,7]"); } int finalInput = (partialByte & ((1 << partialBits) - 1)) | (0x02 << partialBits); int finalBits = partialBits + 2; if (finalBits >= 8) { absorb((byte)finalInput); finalBits -= 8; finalInput >>>= 8; } return super.doFinal(out, outOff, (byte)finalInput, finalBits); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy