16 lines
421 B
Java
16 lines
421 B
Java
|
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;
|
||
|
}
|