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

17 lines
366 B
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public interface Signer {
byte[] generateSignature() throws CryptoException, DataLengthException;
void init(boolean z, CipherParameters cipherParameters);
void reset();
void update(byte b);
void update(byte[] bArr, int i, int i2);
boolean verifySignature(byte[] bArr);
}