20 lines
496 B
Java
20 lines
496 B
Java
|
package org.bouncycastle.crypto.macs;
|
||
|
|
||
|
import org.bouncycastle.crypto.BlockCipher;
|
||
|
import org.bouncycastle.crypto.CipherParameters;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class CMacWithIV extends CMac {
|
||
|
@Override // org.bouncycastle.crypto.macs.CMac
|
||
|
void validate(CipherParameters cipherParameters) {
|
||
|
}
|
||
|
|
||
|
public CMacWithIV(BlockCipher blockCipher, int i) {
|
||
|
super(blockCipher, i);
|
||
|
}
|
||
|
|
||
|
public CMacWithIV(BlockCipher blockCipher) {
|
||
|
super(blockCipher);
|
||
|
}
|
||
|
}
|