final class sun.security.pkcs11.P11Digest extends java.security.MessageDigestSpi implements java.lang.Cloneable, sun.security.util.MessageDigestSpi2
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.pkcs11.P11Digest
  super_class: java.security.MessageDigestSpi
{
  private static final int S_BLANK;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int S_BUFFERED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final int S_INIT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private static final int BUFFER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 96

  private final sun.security.pkcs11.Token token;
    descriptor: Lsun/security/pkcs11/Token;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String algorithm;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final sun.security.pkcs11.wrapper.CK_MECHANISM mechanism;
    descriptor: Lsun/security/pkcs11/wrapper/CK_MECHANISM;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int digestLength;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private sun.security.pkcs11.Session session;
    descriptor: Lsun/security/pkcs11/Session;
    flags: (0x0002) ACC_PRIVATE

  private int state;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private byte[] buffer;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int bufOfs;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.security.pkcs11.Token, java.lang.String, long);
    descriptor: (Lsun/security/pkcs11/Token;Ljava/lang/String;J)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11Digest this
        start local 1 // sun.security.pkcs11.Token token
        start local 2 // java.lang.String algorithm
        start local 3 // long mechanism
         0: .line 93
            aload 0 /* this */
            invokespecial java.security.MessageDigestSpi.<init>:()V
         1: .line 94
            aload 0 /* this */
            aload 1 /* token */
            putfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
         2: .line 95
            aload 0 /* this */
            aload 2 /* algorithm */
            putfield sun.security.pkcs11.P11Digest.algorithm:Ljava/lang/String;
         3: .line 96
            aload 0 /* this */
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            lload 3 /* mechanism */
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(J)V
            putfield sun.security.pkcs11.P11Digest.mechanism:Lsun/security/pkcs11/wrapper/CK_MECHANISM;
         4: .line 97
            lload 3 /* mechanism */
            l2i
            lookupswitch { // 9
                   72: 9
                   76: 11
                  512: 5
                  528: 5
                  544: 7
                  592: 11
                  597: 9
                  608: 13
                  624: 15
              default: 17
          }
         5: .line 100
      StackMap locals: sun.security.pkcs11.P11Digest sun.security.pkcs11.Token java.lang.String long
      StackMap stack:
            aload 0 /* this */
            bipush 16
            putfield sun.security.pkcs11.P11Digest.digestLength:I
         6: .line 101
            goto 18
         7: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 20
            putfield sun.security.pkcs11.P11Digest.digestLength:I
         8: .line 104
            goto 18
         9: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 28
            putfield sun.security.pkcs11.P11Digest.digestLength:I
        10: .line 108
            goto 18
        11: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 32
            putfield sun.security.pkcs11.P11Digest.digestLength:I
        12: .line 112
            goto 18
        13: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 48
            putfield sun.security.pkcs11.P11Digest.digestLength:I
        14: .line 115
            goto 18
        15: .line 117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 64
            putfield sun.security.pkcs11.P11Digest.digestLength:I
        16: .line 118
            goto 18
        17: .line 120
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unknown mechanism: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 3 /* mechanism */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 96
            newarray 8
            putfield sun.security.pkcs11.P11Digest.buffer:[B
        19: .line 123
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11Digest.state:I
        20: .line 124
            return
        end local 3 // long mechanism
        end local 2 // java.lang.String algorithm
        end local 1 // sun.security.pkcs11.Token token
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   21     0       this  Lsun/security/pkcs11/P11Digest;
            0   21     1      token  Lsun/security/pkcs11/Token;
            0   21     2  algorithm  Ljava/lang/String;
            0   21     3  mechanism  J
    MethodParameters:
           Name  Flags
      token      
      algorithm  
      mechanism  

  protected int engineGetDigestLength();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11Digest this
         0: .line 128
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.digestLength:I
            ireturn
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11Digest;

  private void fetchSession();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.security.pkcs11.P11Digest this
         0: .line 132
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 133
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_1
            if_icmpne 7
         2: .line 135
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
         3: .line 136
            aload 0 /* this */
            iconst_2
            putfield sun.security.pkcs11.P11Digest.state:I
         4: .line 137
            goto 7
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
         5: astore 1 /* e */
        start local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
         6: .line 138
            new java.security.ProviderException
            dup
            ldc "No more session available"
            aload 1 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
         7: .line 141
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lsun/security/pkcs11/P11Digest;
            6    7     1     e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2     4       5  Class sun.security.pkcs11.wrapper.PKCS11Exception

  protected void engineReset();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11Digest this
         0: .line 145
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 147
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            ifnull 7
         2: .line 148
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_3
            if_icmpne 6
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.explicitCancel:Z
            ifeq 6
         3: .line 149
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.hasObjects:()Z
            ifne 6
         4: .line 150
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.killSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
         5: .line 151
            goto 7
         6: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
         7: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11Digest.state:I
         8: .line 156
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
         9: .line 157
            return
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/security/pkcs11/P11Digest;

  protected byte[] engineDigest();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.security.pkcs11.P11Digest this
         0: .line 162
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.digestLength:I
            newarray 8
            astore 1 /* digest */
        start local 1 // byte[] digest
         1: .line 163
            aload 0 /* this */
            aload 1 /* digest */
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.digestLength:I
            invokevirtual sun.security.pkcs11.P11Digest.engineDigest:([BII)I
            pop
         2: .line 164
            aload 1 /* digest */
         3: areturn
        end local 1 // byte[] digest
         4: .line 165
      StackMap locals:
      StackMap stack: java.security.DigestException
            astore 1 /* e */
        start local 1 // java.security.DigestException e
         5: .line 166
            new java.security.ProviderException
            dup
            ldc "internal error"
            aload 1 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.security.DigestException e
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11Digest;
            1    4     1  digest  [B
            5    6     1       e  Ljava/security/DigestException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.security.DigestException

  protected int engineDigest(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=7, args_size=4
        start local 0 // sun.security.pkcs11.P11Digest this
        start local 1 // byte[] digest
        start local 2 // int ofs
        start local 3 // int len
         0: .line 173
            iload 3 /* len */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.digestLength:I
            if_icmpge 4
         1: .line 174
            new java.security.DigestException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Length must be at least "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 175
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.digestLength:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 174
            invokespecial java.security.DigestException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.fetchSession:()V
         5: .line 181
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_2
            if_icmpne 11
         6: .line 182
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.mechanism:Lsun/security/pkcs11/wrapper/CK_MECHANISM;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            iconst_0
         7: .line 183
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            aload 1 /* digest */
            iload 2 /* ofs */
            iload 3 /* len */
         8: .line 182
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestSingle:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;[BII[BII)I
            istore 4 /* n */
        start local 4 // int n
         9: .line 184
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
        10: .line 185
            goto 17
        end local 4 // int n
        11: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            ifeq 16
        12: .line 187
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            iconst_0
        13: .line 188
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
        14: .line 187
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestUpdate:(JJ[BII)V
        15: .line 189
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
        16: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 1 /* digest */
            iload 2 /* ofs */
            iload 3 /* len */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestFinal:(J[BII)I
            istore 4 /* n */
        start local 4 // int n
        17: .line 193
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.digestLength:I
            if_icmpeq 19
        18: .line 194
            new java.security.ProviderException
            dup
            ldc "internal digest length error"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 196
      StackMap locals:
      StackMap stack:
            iload 4 /* n */
            istore 6
        20: .line 200
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.engineReset:()V
        21: .line 196
            iload 6
            ireturn
        end local 4 // int n
        22: .line 197
      StackMap locals: sun.security.pkcs11.P11Digest byte[] int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        23: .line 198
            new java.security.ProviderException
            dup
            ldc "digest() failed"
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        24: .line 199
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
        25: .line 200
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.engineReset:()V
        26: .line 201
            aload 5
            athrow
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] digest
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0    this  Lsun/security/pkcs11/P11Digest;
            0   27     1  digest  [B
            0   27     2     ofs  I
            0   27     3     len  I
            9   11     4       n  I
           17   22     4       n  I
           23   24     4       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           5    20      22  Class sun.security.pkcs11.wrapper.PKCS11Exception
           5    20      24  any
          22    24      24  any
    Exceptions:
      throws java.security.DigestException
    MethodParameters:
        Name  Flags
      digest  
      ofs     
      len     

  protected void engineUpdate(byte);
    descriptor: (B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11Digest this
        start local 1 // byte in
         0: .line 206
            iconst_1
            newarray 8
            dup
            iconst_0
            iload 1 /* in */
            bastore
            astore 2 /* temp */
        start local 2 // byte[] temp
         1: .line 207
            aload 0 /* this */
            aload 2 /* temp */
            iconst_0
            iconst_1
            invokevirtual sun.security.pkcs11.P11Digest.engineUpdate:([BII)V
         2: .line 208
            return
        end local 2 // byte[] temp
        end local 1 // byte in
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/pkcs11/P11Digest;
            0    3     1    in  B
            1    3     2  temp  [B
    MethodParameters:
      Name  Flags
      in    

  protected void engineUpdate(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11Digest this
        start local 1 // byte[] in
        start local 2 // int ofs
        start local 3 // int len
         0: .line 212
            iload 3 /* len */
            ifgt 2
         1: .line 213
            return
         2: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.fetchSession:()V
         3: .line 218
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_2
            if_icmpne 6
         4: .line 219
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.mechanism:Lsun/security/pkcs11/wrapper/CK_MECHANISM;
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;)V
         5: .line 220
            aload 0 /* this */
            iconst_3
            putfield sun.security.pkcs11.P11Digest.state:I
         6: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            ifeq 9
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            iload 3 /* len */
            iadd
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            arraylength
            if_icmple 9
         7: .line 224
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestUpdate:(JJ[BII)V
         8: .line 225
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
         9: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            iload 3 /* len */
            iadd
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            arraylength
            if_icmple 12
        10: .line 229
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 1 /* in */
            iload 2 /* ofs */
            iload 3 /* len */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestUpdate:(JJ[BII)V
        11: .line 230
            goto 18
        12: .line 232
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* ofs */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 233
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            iload 3 /* len */
            iadd
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
        14: .line 235
            goto 18
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        15: astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        16: .line 236
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.engineReset:()V
        17: .line 237
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        18: .line 239
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lsun/security/pkcs11/P11Digest;
            0   19     1    in  [B
            0   19     2   ofs  I
            0   19     3   len  I
           16   18     4     e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           3    14      15  Class sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
      Name  Flags
      in    
      ofs   
      len   

  public void engineUpdate(javax.crypto.SecretKey);
    descriptor: (Ljavax/crypto/SecretKey;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // sun.security.pkcs11.P11Digest this
        start local 1 // javax.crypto.SecretKey key
         0: .line 250
            aload 1 /* key */
            instanceof sun.security.pkcs11.P11Key
            ifne 2
         1: .line 251
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Not a P11Key: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 253
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            checkcast sun.security.pkcs11.P11Key
            astore 2 /* p11Key */
        start local 2 // sun.security.pkcs11.P11Key p11Key
         3: .line 254
            aload 2 /* p11Key */
            getfield sun.security.pkcs11.P11Key.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            if_acmpeq 7
         4: .line 255
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Not a P11Key of this provider: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 256
            aload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 255
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 259
      StackMap locals: sun.security.pkcs11.P11Key
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.fetchSession:()V
         8: .line 260
            aload 2 /* p11Key */
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 3 /* p11KeyID */
        start local 3 // long p11KeyID
         9: .line 262
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_2
            if_icmpne 12
        10: .line 263
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.mechanism:Lsun/security/pkcs11/wrapper/CK_MECHANISM;
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;)V
        11: .line 264
            aload 0 /* this */
            iconst_3
            putfield sun.security.pkcs11.P11Digest.state:I
        12: .line 267
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            ifeq 15
        13: .line 268
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestUpdate:(JJ[BII)V
        14: .line 269
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
        15: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 3 /* p11KeyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestKey:(JJ)V
        16: .line 272
            goto 23
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        17: astore 5 /* e */
        start local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        18: .line 273
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.engineReset:()V
        19: .line 274
            new java.security.ProviderException
            dup
            ldc "update(SecretKey) failed"
            aload 5 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        20: .line 275
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 6
        21: .line 276
            aload 2 /* p11Key */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        22: .line 277
            aload 6
            athrow
        23: .line 276
      StackMap locals:
      StackMap stack:
            aload 2 /* p11Key */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        24: .line 278
            return
        end local 3 // long p11KeyID
        end local 2 // sun.security.pkcs11.P11Key p11Key
        end local 1 // javax.crypto.SecretKey key
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0      this  Lsun/security/pkcs11/P11Digest;
            0   25     1       key  Ljavax/crypto/SecretKey;
            3   25     2    p11Key  Lsun/security/pkcs11/P11Key;
            9   25     3  p11KeyID  J
           18   20     5         e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           9    16      17  Class sun.security.pkcs11.wrapper.PKCS11Exception
           9    20      20  any
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  protected void engineUpdate(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // sun.security.pkcs11.P11Digest this
        start local 1 // java.nio.ByteBuffer byteBuffer
         0: .line 282
            aload 1 /* byteBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 283
            iload 2 /* len */
            ifgt 3
         2: .line 284
            return
         3: .line 287
      StackMap locals: int
      StackMap stack:
            aload 1 /* byteBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifne 6
         4: .line 288
            aload 0 /* this */
            aload 1 /* byteBuffer */
            invokespecial java.security.MessageDigestSpi.engineUpdate:(Ljava/nio/ByteBuffer;)V
         5: .line 289
            return
         6: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.fetchSession:()V
         7: .line 293
            aload 1 /* byteBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 3 /* addr */
        start local 3 // long addr
         8: .line 294
            aload 1 /* byteBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* ofs */
        start local 5 // int ofs
         9: .line 296
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_2
            if_icmpne 12
        10: .line 297
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.mechanism:Lsun/security/pkcs11/wrapper/CK_MECHANISM;
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;)V
        11: .line 298
            aload 0 /* this */
            iconst_3
            putfield sun.security.pkcs11.P11Digest.state:I
        12: .line 300
      StackMap locals: long int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            ifeq 15
        13: .line 301
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.bufOfs:I
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestUpdate:(JJ[BII)V
        14: .line 302
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Digest.bufOfs:I
        15: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 3 /* addr */
            iload 5 /* ofs */
            i2l
            ladd
            aconst_null
            iconst_0
            iload 2 /* len */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DigestUpdate:(JJ[BII)V
        16: .line 305
            aload 1 /* byteBuffer */
            iload 5 /* ofs */
            iload 2 /* len */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        17: .line 306
            goto 21
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        18: astore 6 /* e */
        start local 6 // sun.security.pkcs11.wrapper.PKCS11Exception e
        19: .line 307
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Digest.engineReset:()V
        20: .line 308
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 6 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // sun.security.pkcs11.wrapper.PKCS11Exception e
        21: .line 310
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int ofs
        end local 3 // long addr
        end local 2 // int len
        end local 1 // java.nio.ByteBuffer byteBuffer
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   22     0        this  Lsun/security/pkcs11/P11Digest;
            0   22     1  byteBuffer  Ljava/nio/ByteBuffer;
            1   22     2         len  I
            8   22     3        addr  J
            9   22     5         ofs  I
           19   21     6           e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           9    17      18  Class sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
            Name  Flags
      byteBuffer  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // sun.security.pkcs11.P11Digest this
         0: .line 313
            aload 0 /* this */
            invokespecial java.security.MessageDigestSpi.clone:()Ljava/lang/Object;
            checkcast sun.security.pkcs11.P11Digest
            astore 1 /* copy */
        start local 1 // sun.security.pkcs11.P11Digest copy
         1: .line 314
            aload 1 /* copy */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.buffer:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield sun.security.pkcs11.P11Digest.buffer:[B
         2: .line 316
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            ifnull 4
         3: .line 317
            aload 1 /* copy */
            aload 1 /* copy */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
         4: .line 319
      StackMap locals: sun.security.pkcs11.P11Digest
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.state:I
            iconst_3
            if_icmpne 14
         5: .line 321
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_GetOperationState:(J)[B
         6: .line 320
            astore 2 /* stateValues */
        start local 2 // byte[] stateValues
         7: .line 322
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 1 /* copy */
            getfield sun.security.pkcs11.P11Digest.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
         8: .line 323
            aload 2 /* stateValues */
            lconst_0
            lconst_0
         9: .line 322
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_SetOperationState:(J[BJJ)V
        end local 2 // byte[] stateValues
        10: .line 325
            goto 14
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        11: astore 2 /* e */
        start local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        12: .line 327
            new java.lang.CloneNotSupportedException
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Digest.algorithm:Ljava/lang/String;
            invokespecial java.lang.CloneNotSupportedException.<init>:(Ljava/lang/String;)V
            aload 2 /* e */
            invokevirtual java.lang.CloneNotSupportedException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        13: .line 326
            checkcast java.lang.CloneNotSupportedException
            athrow
        end local 2 // sun.security.pkcs11.wrapper.PKCS11Exception e
        14: .line 329
      StackMap locals:
      StackMap stack:
            aload 1 /* copy */
            areturn
        end local 1 // sun.security.pkcs11.P11Digest copy
        end local 0 // sun.security.pkcs11.P11Digest this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lsun/security/pkcs11/P11Digest;
            1   15     1         copy  Lsun/security/pkcs11/P11Digest;
            7   10     2  stateValues  [B
           12   14     2            e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2    10      11  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "P11Digest.java"