what-the-bank/sources/org/bouncycastle/crypto/paddings/BlockCipherPadding.java

16 lines
421 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.paddings;
import java.security.SecureRandom;
import org.bouncycastle.crypto.InvalidCipherTextException;
/* loaded from: classes6.dex */
public interface BlockCipherPadding {
int addPadding(byte[] bArr, int i);
String getPaddingName();
void init(SecureRandom secureRandom) throws IllegalArgumentException;
int padCount(byte[] bArr) throws InvalidCipherTextException;
}