what-the-bank/sources/org/bouncycastle/crypto/Digest.java

17 lines
280 B
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public interface Digest {
int doFinal(byte[] bArr, int i);
String getAlgorithmName();
int getDigestSize();
void reset();
void update(byte b);
void update(byte[] bArr, int i, int i2);
}