public class org.bouncycastle.crypto.macs.ISO9797Alg3Mac implements org.bouncycastle.crypto.Mac
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: org.bouncycastle.crypto.macs.ISO9797Alg3Mac
super_class: java.lang.Object
{
private byte[] mac;
descriptor: [B
flags: (0x0002) ACC_PRIVATE
private byte[] buf;
descriptor: [B
flags: (0x0002) ACC_PRIVATE
private int bufOff;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private org.bouncycastle.crypto.BlockCipher cipher;
descriptor: Lorg/bouncycastle/crypto/BlockCipher;
flags: (0x0002) ACC_PRIVATE
private org.bouncycastle.crypto.paddings.BlockCipherPadding padding;
descriptor: Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
flags: (0x0002) ACC_PRIVATE
private int macSize;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private org.bouncycastle.crypto.params.KeyParameter lastKey2;
descriptor: Lorg/bouncycastle/crypto/params/KeyParameter;
flags: (0x0002) ACC_PRIVATE
private org.bouncycastle.crypto.params.KeyParameter lastKey3;
descriptor: Lorg/bouncycastle/crypto/params/KeyParameter;
flags: (0x0002) ACC_PRIVATE
public void <init>(org.bouncycastle.crypto.BlockCipher);
descriptor: (Lorg/bouncycastle/crypto/BlockCipher;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
aload 1
invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
bipush 8
imul
aconst_null
invokespecial org.bouncycastle.crypto.macs.ISO9797Alg3Mac.<init>:(Lorg/bouncycastle/crypto/BlockCipher;ILorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 2 1 cipher Lorg/bouncycastle/crypto/BlockCipher;
MethodParameters:
Name Flags
cipher
public void <init>(org.bouncycastle.crypto.BlockCipher, org.bouncycastle.crypto.paddings.BlockCipherPadding);
descriptor: (Lorg/bouncycastle/crypto/BlockCipher;Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 1
invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
bipush 8
imul
aload 2
invokespecial org.bouncycastle.crypto.macs.ISO9797Alg3Mac.<init>:(Lorg/bouncycastle/crypto/BlockCipher;ILorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
1: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 2 1 cipher Lorg/bouncycastle/crypto/BlockCipher;
0 2 2 padding Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
MethodParameters:
Name Flags
cipher
padding
public void <init>(org.bouncycastle.crypto.BlockCipher, int);
descriptor: (Lorg/bouncycastle/crypto/BlockCipher;I)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
iload 2
aconst_null
invokespecial org.bouncycastle.crypto.macs.ISO9797Alg3Mac.<init>:(Lorg/bouncycastle/crypto/BlockCipher;ILorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
1: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 2 1 cipher Lorg/bouncycastle/crypto/BlockCipher;
0 2 2 macSizeInBits I
MethodParameters:
Name Flags
cipher
macSizeInBits
public void <init>(org.bouncycastle.crypto.BlockCipher, int, org.bouncycastle.crypto.paddings.BlockCipherPadding);
descriptor: (Lorg/bouncycastle/crypto/BlockCipher;ILorg/bouncycastle/crypto/paddings/BlockCipherPadding;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: iload 2
bipush 8
irem
ifeq 3
2: new java.lang.IllegalArgumentException
dup
ldc "MAC size must be multiple of 8"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
3: StackMap locals: org.bouncycastle.crypto.macs.ISO9797Alg3Mac org.bouncycastle.crypto.BlockCipher int org.bouncycastle.crypto.paddings.BlockCipherPadding
StackMap stack:
aload 1
instanceof org.bouncycastle.crypto.engines.DESEngine
ifne 5
4: new java.lang.IllegalArgumentException
dup
ldc "cipher must be instance of DESEngine"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
5: StackMap locals:
StackMap stack:
aload 0
new org.bouncycastle.crypto.modes.CBCBlockCipher
dup
aload 1
invokespecial org.bouncycastle.crypto.modes.CBCBlockCipher.<init>:(Lorg/bouncycastle/crypto/BlockCipher;)V
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
6: aload 0
aload 3
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
7: aload 0
iload 2
bipush 8
idiv
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.macSize:I
8: aload 0
aload 1
invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
newarray 8
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
9: aload 0
aload 1
invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
newarray 8
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
10: aload 0
iconst_0
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
11: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 12 1 cipher Lorg/bouncycastle/crypto/BlockCipher;
0 12 2 macSizeInBits I
0 12 3 padding Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
MethodParameters:
Name Flags
cipher
macSizeInBits
padding
public java.lang.String getAlgorithmName();
descriptor: ()Ljava/lang/String;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: ldc "ISO9797Alg3"
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
public void init(org.bouncycastle.crypto.CipherParameters);
descriptor: (Lorg/bouncycastle/crypto/CipherParameters;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=6, locals=5, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual org.bouncycastle.crypto.macs.ISO9797Alg3Mac.reset:()V
1: aload 1
instanceof org.bouncycastle.crypto.params.KeyParameter
ifne 5
aload 1
instanceof org.bouncycastle.crypto.params.ParametersWithIV
ifne 5
2: new java.lang.IllegalArgumentException
dup
3: ldc "params must be an instance of KeyParameter or ParametersWithIV"
4: invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
5: StackMap locals:
StackMap stack:
aload 1
instanceof org.bouncycastle.crypto.params.KeyParameter
ifeq 8
6: aload 1
checkcast org.bouncycastle.crypto.params.KeyParameter
astore 2
start local 2 7: goto 9
end local 2 8: StackMap locals:
StackMap stack:
aload 1
checkcast org.bouncycastle.crypto.params.ParametersWithIV
invokevirtual org.bouncycastle.crypto.params.ParametersWithIV.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
checkcast org.bouncycastle.crypto.params.KeyParameter
astore 2
start local 2 9: StackMap locals: org.bouncycastle.crypto.params.KeyParameter
StackMap stack:
aload 2
invokevirtual org.bouncycastle.crypto.params.KeyParameter.getKey:()[B
astore 4
start local 4 10: aload 4
arraylength
bipush 16
if_icmpne 15
11: new org.bouncycastle.crypto.params.KeyParameter
dup
aload 4
iconst_0
bipush 8
invokespecial org.bouncycastle.crypto.params.KeyParameter.<init>:([BII)V
astore 3
start local 3 12: aload 0
new org.bouncycastle.crypto.params.KeyParameter
dup
aload 4
bipush 8
bipush 8
invokespecial org.bouncycastle.crypto.params.KeyParameter.<init>:([BII)V
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.lastKey2:Lorg/bouncycastle/crypto/params/KeyParameter;
13: aload 0
aload 3
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.lastKey3:Lorg/bouncycastle/crypto/params/KeyParameter;
14: goto 23
end local 3 15: StackMap locals: org.bouncycastle.crypto.macs.ISO9797Alg3Mac org.bouncycastle.crypto.CipherParameters org.bouncycastle.crypto.params.KeyParameter top byte[]
StackMap stack:
aload 4
arraylength
bipush 24
if_icmpne 20
16: new org.bouncycastle.crypto.params.KeyParameter
dup
aload 4
iconst_0
bipush 8
invokespecial org.bouncycastle.crypto.params.KeyParameter.<init>:([BII)V
astore 3
start local 3 17: aload 0
new org.bouncycastle.crypto.params.KeyParameter
dup
aload 4
bipush 8
bipush 8
invokespecial org.bouncycastle.crypto.params.KeyParameter.<init>:([BII)V
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.lastKey2:Lorg/bouncycastle/crypto/params/KeyParameter;
18: aload 0
new org.bouncycastle.crypto.params.KeyParameter
dup
aload 4
bipush 16
bipush 8
invokespecial org.bouncycastle.crypto.params.KeyParameter.<init>:([BII)V
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.lastKey3:Lorg/bouncycastle/crypto/params/KeyParameter;
19: goto 23
end local 3 20: StackMap locals:
StackMap stack:
new java.lang.IllegalArgumentException
dup
21: ldc "Key must be either 112 or 168 bit long"
22: invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
start local 3 23: StackMap locals: org.bouncycastle.crypto.macs.ISO9797Alg3Mac org.bouncycastle.crypto.CipherParameters org.bouncycastle.crypto.params.KeyParameter org.bouncycastle.crypto.params.KeyParameter byte[]
StackMap stack:
aload 1
instanceof org.bouncycastle.crypto.params.ParametersWithIV
ifeq 26
24: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
iconst_1
new org.bouncycastle.crypto.params.ParametersWithIV
dup
aload 3
aload 1
checkcast org.bouncycastle.crypto.params.ParametersWithIV
invokevirtual org.bouncycastle.crypto.params.ParametersWithIV.getIV:()[B
invokespecial org.bouncycastle.crypto.params.ParametersWithIV.<init>:(Lorg/bouncycastle/crypto/CipherParameters;[B)V
invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
25: goto 27
26: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
iconst_1
aload 3
invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
27: StackMap locals:
StackMap stack:
return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 28 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 28 1 params Lorg/bouncycastle/crypto/CipherParameters;
7 8 2 kp Lorg/bouncycastle/crypto/params/KeyParameter;
9 28 2 kp Lorg/bouncycastle/crypto/params/KeyParameter;
12 15 3 key1 Lorg/bouncycastle/crypto/params/KeyParameter;
17 20 3 key1 Lorg/bouncycastle/crypto/params/KeyParameter;
23 28 3 key1 Lorg/bouncycastle/crypto/params/KeyParameter;
10 28 4 keyvalue [B
MethodParameters:
Name Flags
params
public int getMacSize();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.macSize:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
public void update(byte);
descriptor: (B)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
arraylength
if_icmpne 3
1: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
pop
2: aload 0
iconst_0
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
3: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
aload 0
dup
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
dup_x1
iconst_1
iadd
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iload 1
bastore
4: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 5 1 in B
MethodParameters:
Name Flags
in
public void update(byte[], int, int);
descriptor: ([BII)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=6, args_size=4
start local 0 start local 1 start local 2 start local 3 0: iload 3
ifge 2
1: new java.lang.IllegalArgumentException
dup
ldc "Can't have a negative input length!"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
istore 4
start local 4 3: iload 4
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
isub
istore 5
start local 5 4: iload 3
iload 5
if_icmple 15
5: aload 1
iload 2
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iload 5
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
6: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
pop
7: aload 0
iconst_0
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
8: iload 3
iload 5
isub
istore 3
9: iload 2
iload 5
iadd
istore 2
10: goto 14
11: StackMap locals: int int
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
aload 1
iload 2
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
pop
12: iload 3
iload 4
isub
istore 3
13: iload 2
iload 4
iadd
istore 2
14: StackMap locals:
StackMap stack:
iload 3
iload 4
if_icmpgt 11
15: StackMap locals:
StackMap stack:
aload 1
iload 2
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iload 3
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
16: aload 0
dup
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iload 3
iadd
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
17: return
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 18 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 18 1 in [B
0 18 2 inOff I
0 18 3 len I
3 18 4 blockSize I
4 18 5 gapLen I
MethodParameters:
Name Flags
in
inOff
len
public int doFinal(byte[], int);
descriptor: ([BI)I
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=5, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
istore 3
start local 3 1: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
ifnonnull 7
2: goto 5
3: StackMap locals: int
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iconst_0
bastore
4: aload 0
dup
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iconst_1
iadd
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
5: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iload 3
if_icmplt 3
6: goto 11
7: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
iload 3
if_icmpne 10
8: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
pop
9: aload 0
iconst_0
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
10: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.padding:Lorg/bouncycastle/crypto/paddings/BlockCipherPadding;
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
invokeinterface org.bouncycastle.crypto.paddings.BlockCipherPadding.addPadding:([BI)I
pop
11: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
pop
12: new org.bouncycastle.crypto.engines.DESEngine
dup
invokespecial org.bouncycastle.crypto.engines.DESEngine.<init>:()V
astore 4
start local 4 13: aload 4
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.lastKey2:Lorg/bouncycastle/crypto/params/KeyParameter;
invokevirtual org.bouncycastle.crypto.engines.DESEngine.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
14: aload 4
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokevirtual org.bouncycastle.crypto.engines.DESEngine.processBlock:([BI[BI)I
pop
15: aload 4
iconst_1
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.lastKey3:Lorg/bouncycastle/crypto/params/KeyParameter;
invokevirtual org.bouncycastle.crypto.engines.DESEngine.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
16: aload 4
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
invokevirtual org.bouncycastle.crypto.engines.DESEngine.processBlock:([BI[BI)I
pop
17: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.mac:[B
iconst_0
aload 1
iload 2
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.macSize:I
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
18: aload 0
invokevirtual org.bouncycastle.crypto.macs.ISO9797Alg3Mac.reset:()V
19: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.macSize:I
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 20 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
0 20 1 out [B
0 20 2 outOff I
1 20 3 blockSize I
13 20 4 deseng Lorg/bouncycastle/crypto/engines/DESEngine;
MethodParameters:
Name Flags
out
outOff
public void reset();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=1
start local 0 0: iconst_0
istore 1
start local 1 1: goto 4
2: StackMap locals: int
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
iload 1
iconst_0
bastore
3: iinc 1 1
StackMap locals:
StackMap stack:
4: iload 1
aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.buf:[B
arraylength
if_icmplt 2
end local 1 5: aload 0
iconst_0
putfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.bufOff:I
6: aload 0
getfield org.bouncycastle.crypto.macs.ISO9797Alg3Mac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
invokeinterface org.bouncycastle.crypto.BlockCipher.reset:()V
7: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lorg/bouncycastle/crypto/macs/ISO9797Alg3Mac;
1 5 1 i I
}
SourceFile: "ISO9797Alg3Mac.java"