final class sun.security.provider.KeyProtector
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.provider.KeyProtector
  super_class: java.lang.Object
{
  private static final int SALT_LEN;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 20

  private static final java.lang.String DIGEST_ALG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "SHA"

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

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

  private java.security.MessageDigest md;
    descriptor: Ljava/security/MessageDigest;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.provider.KeyProtector this
        start local 1 // byte[] passwordBytes
         0: .line 120
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 123
            aload 1 /* passwordBytes */
            ifnonnull 3
         2: .line 124
            new java.lang.IllegalArgumentException
            dup
            ldc "password can't be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 126
      StackMap locals: sun.security.provider.KeyProtector byte[]
      StackMap stack:
            aload 0 /* this */
            ldc "SHA"
            invokestatic java.security.MessageDigest.getInstance:(Ljava/lang/String;)Ljava/security/MessageDigest;
            putfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
         4: .line 127
            aload 0 /* this */
            aload 1 /* passwordBytes */
            putfield sun.security.provider.KeyProtector.passwdBytes:[B
         5: .line 128
            return
        end local 1 // byte[] passwordBytes
        end local 0 // sun.security.provider.KeyProtector this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lsun/security/provider/KeyProtector;
            0    6     1  passwordBytes  [B
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
               Name  Flags
      passwordBytes  

  public byte[] protect(java.security.Key);
    descriptor: (Ljava/security/Key;)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=15, args_size=2
        start local 0 // sun.security.provider.KeyProtector this
        start local 1 // java.security.Key key
         0: .line 140
            iconst_0
            istore 6 /* encrKeyOffset */
        start local 6 // int encrKeyOffset
         1: .line 142
            aload 1 /* key */
            ifnonnull 3
         2: .line 143
            new java.lang.IllegalArgumentException
            dup
            ldc "plaintext key can't be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 146
      StackMap locals: sun.security.provider.KeyProtector java.security.Key top top top top int
      StackMap stack:
            ldc "PKCS#8"
            aload 1 /* key */
            invokeinterface java.security.Key.getFormat:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 7
         4: .line 147
            new java.security.KeyStoreException
            dup
         5: .line 148
            ldc "Cannot get key bytes, not PKCS#8 encoded"
         6: .line 147
            invokespecial java.security.KeyStoreException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 151
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            astore 7 /* plainKey */
        start local 7 // byte[] plainKey
         8: .line 152
            aload 7 /* plainKey */
            ifnonnull 12
         9: .line 153
            new java.security.KeyStoreException
            dup
        10: .line 154
            ldc "Cannot get key bytes, encoding not supported"
        11: .line 153
            invokespecial java.security.KeyStoreException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 158
      StackMap locals: byte[]
      StackMap stack:
            aload 7 /* plainKey */
            arraylength
            bipush 20
            idiv
            istore 3 /* numRounds */
        start local 3 // int numRounds
        13: .line 159
            aload 7 /* plainKey */
            arraylength
            bipush 20
            irem
            ifeq 15
        14: .line 160
            iinc 3 /* numRounds */ 1
        15: .line 163
      StackMap locals: sun.security.provider.KeyProtector java.security.Key top int top top int byte[]
      StackMap stack:
            bipush 20
            newarray 8
            astore 8 /* salt */
        start local 8 // byte[] salt
        16: .line 164
            new java.security.SecureRandom
            dup
            invokespecial java.security.SecureRandom.<init>:()V
            astore 9 /* random */
        start local 9 // java.security.SecureRandom random
        17: .line 165
            aload 9 /* random */
            aload 8 /* salt */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        18: .line 168
            aload 7 /* plainKey */
            arraylength
            newarray 8
            astore 10 /* xorKey */
        start local 10 // byte[] xorKey
        19: .line 171
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        20: iconst_0
            istore 5 /* xorOffset */
        start local 5 // int xorOffset
        21: aload 8 /* salt */
            astore 4 /* digest */
        start local 4 // byte[] digest
        22: .line 172
            goto 36
        23: .line 174
      StackMap locals: sun.security.provider.KeyProtector java.security.Key int int byte[] int int byte[] byte[] java.security.SecureRandom byte[]
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.passwdBytes:[B
            invokevirtual java.security.MessageDigest.update:([B)V
        24: .line 175
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 4 /* digest */
            invokevirtual java.security.MessageDigest.update:([B)V
        25: .line 176
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 4 /* digest */
        26: .line 177
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.reset:()V
        27: .line 179
            iload 2 /* i */
            iload 3 /* numRounds */
            iconst_1
            isub
            if_icmpge 32
        28: .line 180
            aload 4 /* digest */
            iconst_0
            aload 10 /* xorKey */
            iload 5 /* xorOffset */
        29: .line 181
            aload 4 /* digest */
            arraylength
        30: .line 180
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        31: .line 182
            goto 35
        32: .line 183
      StackMap locals:
      StackMap stack:
            aload 4 /* digest */
            iconst_0
            aload 10 /* xorKey */
            iload 5 /* xorOffset */
        33: .line 184
            aload 10 /* xorKey */
            arraylength
            iload 5 /* xorOffset */
            isub
        34: .line 183
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        35: .line 173
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
            iinc 5 /* xorOffset */ 20
        36: .line 172
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 3 /* numRounds */
        37: .line 171
            if_icmplt 23
        38: .line 189
            aload 7 /* plainKey */
            arraylength
            newarray 8
            astore 11 /* tmpKey */
        start local 11 // byte[] tmpKey
        39: .line 190
            iconst_0
            istore 2 /* i */
            goto 42
        40: .line 191
      StackMap locals: byte[]
      StackMap stack:
            aload 11 /* tmpKey */
            iload 2 /* i */
            aload 7 /* plainKey */
            iload 2 /* i */
            baload
            aload 10 /* xorKey */
            iload 2 /* i */
            baload
            ixor
            i2b
            bastore
        41: .line 190
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        42: iload 2 /* i */
            aload 11 /* tmpKey */
            arraylength
            if_icmplt 40
        43: .line 195
            aload 8 /* salt */
            arraylength
            aload 11 /* tmpKey */
            arraylength
            iadd
            bipush 20
            iadd
            newarray 8
            astore 12 /* encrKey */
        start local 12 // byte[] encrKey
        44: .line 196
            aload 8 /* salt */
            iconst_0
            aload 12 /* encrKey */
            iload 6 /* encrKeyOffset */
            aload 8 /* salt */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        45: .line 197
            iload 6 /* encrKeyOffset */
            aload 8 /* salt */
            arraylength
            iadd
            istore 6 /* encrKeyOffset */
        46: .line 198
            aload 11 /* tmpKey */
            iconst_0
            aload 12 /* encrKey */
            iload 6 /* encrKeyOffset */
            aload 11 /* tmpKey */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        47: .line 199
            iload 6 /* encrKeyOffset */
            aload 11 /* tmpKey */
            arraylength
            iadd
            istore 6 /* encrKeyOffset */
        48: .line 202
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.passwdBytes:[B
            invokevirtual java.security.MessageDigest.update:([B)V
        49: .line 203
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.passwdBytes:[B
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        50: .line 204
            aload 0 /* this */
            aconst_null
            putfield sun.security.provider.KeyProtector.passwdBytes:[B
        51: .line 205
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 7 /* plainKey */
            invokevirtual java.security.MessageDigest.update:([B)V
        52: .line 206
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 4 /* digest */
        53: .line 207
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.reset:()V
        54: .line 208
            aload 4 /* digest */
            iconst_0
            aload 12 /* encrKey */
            iload 6 /* encrKeyOffset */
            aload 4 /* digest */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        55: .line 214
            new sun.security.x509.AlgorithmId
            dup
        56: .line 215
            getstatic sun.security.util.KnownOIDs.JAVASOFT_JDKKeyProtector:Lsun/security/util/KnownOIDs;
        57: .line 214
            invokestatic sun.security.util.ObjectIdentifier.of:(Lsun/security/util/KnownOIDs;)Lsun/security/util/ObjectIdentifier;
            invokespecial sun.security.x509.AlgorithmId.<init>:(Lsun/security/util/ObjectIdentifier;)V
            astore 13 /* encrAlg */
        start local 13 // sun.security.x509.AlgorithmId encrAlg
        58: .line 216
            new sun.security.pkcs.EncryptedPrivateKeyInfo
            dup
            aload 13 /* encrAlg */
            aload 12 /* encrKey */
            invokespecial sun.security.pkcs.EncryptedPrivateKeyInfo.<init>:(Lsun/security/x509/AlgorithmId;[B)V
            invokevirtual sun.security.pkcs.EncryptedPrivateKeyInfo.getEncoded:()[B
        59: areturn
        end local 13 // sun.security.x509.AlgorithmId encrAlg
        60: .line 217
      StackMap locals: sun.security.provider.KeyProtector java.security.Key int int byte[] int int byte[] byte[] java.security.SecureRandom byte[] byte[] byte[]
      StackMap stack: java.io.IOException
            astore 14 /* ioe */
        start local 14 // java.io.IOException ioe
        61: .line 218
            new java.security.KeyStoreException
            dup
            aload 14 /* ioe */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.KeyStoreException.<init>:(Ljava/lang/String;)V
            athrow
        end local 14 // java.io.IOException ioe
        end local 12 // byte[] encrKey
        end local 11 // byte[] tmpKey
        end local 10 // byte[] xorKey
        end local 9 // java.security.SecureRandom random
        end local 8 // byte[] salt
        end local 7 // byte[] plainKey
        end local 6 // int encrKeyOffset
        end local 5 // int xorOffset
        end local 4 // byte[] digest
        end local 3 // int numRounds
        end local 2 // int i
        end local 1 // java.security.Key key
        end local 0 // sun.security.provider.KeyProtector this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   62     0           this  Lsun/security/provider/KeyProtector;
            0   62     1            key  Ljava/security/Key;
           20   62     2              i  I
           13   62     3      numRounds  I
           22   62     4         digest  [B
           21   62     5      xorOffset  I
            1   62     6  encrKeyOffset  I
            8   62     7       plainKey  [B
           16   62     8           salt  [B
           17   62     9         random  Ljava/security/SecureRandom;
           19   62    10         xorKey  [B
           39   62    11         tmpKey  [B
           44   62    12        encrKey  [B
           58   60    13        encrAlg  Lsun/security/x509/AlgorithmId;
           61   62    14            ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          55    59      60  Class java.io.IOException
    Exceptions:
      throws java.security.KeyStoreException
    MethodParameters:
      Name  Flags
      key   

  public java.security.Key recover(sun.security.pkcs.EncryptedPrivateKeyInfo);
    descriptor: (Lsun/security/pkcs/EncryptedPrivateKeyInfo;)Ljava/security/Key;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=14, args_size=2
        start local 0 // sun.security.provider.KeyProtector this
        start local 1 // sun.security.pkcs.EncryptedPrivateKeyInfo encrInfo
         0: .line 236
            aload 1 /* encrInfo */
            invokevirtual sun.security.pkcs.EncryptedPrivateKeyInfo.getAlgorithm:()Lsun/security/x509/AlgorithmId;
            astore 7 /* encrAlg */
        start local 7 // sun.security.x509.AlgorithmId encrAlg
         1: .line 237
            aload 7 /* encrAlg */
            invokevirtual sun.security.x509.AlgorithmId.getOID:()Lsun/security/util/ObjectIdentifier;
            invokevirtual sun.security.util.ObjectIdentifier.toString:()Ljava/lang/String;
         2: .line 238
            getstatic sun.security.util.KnownOIDs.JAVASOFT_JDKKeyProtector:Lsun/security/util/KnownOIDs;
            invokevirtual sun.security.util.KnownOIDs.value:()Ljava/lang/String;
         3: .line 237
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
         4: .line 238
            ifne 6
         5: .line 239
            new java.security.UnrecoverableKeyException
            dup
            ldc "Unsupported key protection algorithm"
            invokespecial java.security.UnrecoverableKeyException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 243
      StackMap locals: sun.security.provider.KeyProtector sun.security.pkcs.EncryptedPrivateKeyInfo top top top top top sun.security.x509.AlgorithmId
      StackMap stack:
            aload 1 /* encrInfo */
            invokevirtual sun.security.pkcs.EncryptedPrivateKeyInfo.getEncryptedData:()[B
            astore 8 /* protectedKey */
        start local 8 // byte[] protectedKey
         7: .line 249
            bipush 20
            newarray 8
            astore 9 /* salt */
        start local 9 // byte[] salt
         8: .line 250
            aload 8 /* protectedKey */
            iconst_0
            aload 9 /* salt */
            iconst_0
            bipush 20
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 253
            aload 8 /* protectedKey */
            arraylength
            bipush 20
            isub
            bipush 20
            isub
            istore 6 /* encrKeyLen */
        start local 6 // int encrKeyLen
        10: .line 254
            iload 6 /* encrKeyLen */
            bipush 20
            idiv
            istore 4 /* numRounds */
        start local 4 // int numRounds
        11: .line 255
            iload 6 /* encrKeyLen */
            bipush 20
            irem
            ifeq 12
            iinc 4 /* numRounds */ 1
        12: .line 258
      StackMap locals: sun.security.provider.KeyProtector sun.security.pkcs.EncryptedPrivateKeyInfo top top int top int sun.security.x509.AlgorithmId byte[] byte[]
      StackMap stack:
            iload 6 /* encrKeyLen */
            newarray 8
            astore 10 /* encrKey */
        start local 10 // byte[] encrKey
        13: .line 259
            aload 8 /* protectedKey */
            bipush 20
            aload 10 /* encrKey */
            iconst_0
            iload 6 /* encrKeyLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 262
            aload 10 /* encrKey */
            arraylength
            newarray 8
            astore 11 /* xorKey */
        start local 11 // byte[] xorKey
        15: .line 265
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        16: iconst_0
            istore 5 /* xorOffset */
        start local 5 // int xorOffset
        17: aload 9 /* salt */
            astore 3 /* digest */
        start local 3 // byte[] digest
        18: .line 266
            goto 32
        19: .line 268
      StackMap locals: sun.security.provider.KeyProtector sun.security.pkcs.EncryptedPrivateKeyInfo int byte[] int int int sun.security.x509.AlgorithmId byte[] byte[] byte[] byte[]
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.passwdBytes:[B
            invokevirtual java.security.MessageDigest.update:([B)V
        20: .line 269
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 3 /* digest */
            invokevirtual java.security.MessageDigest.update:([B)V
        21: .line 270
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 3 /* digest */
        22: .line 271
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.reset:()V
        23: .line 273
            iload 2 /* i */
            iload 4 /* numRounds */
            iconst_1
            isub
            if_icmpge 28
        24: .line 274
            aload 3 /* digest */
            iconst_0
            aload 11 /* xorKey */
            iload 5 /* xorOffset */
        25: .line 275
            aload 3 /* digest */
            arraylength
        26: .line 274
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        27: .line 276
            goto 31
        28: .line 277
      StackMap locals:
      StackMap stack:
            aload 3 /* digest */
            iconst_0
            aload 11 /* xorKey */
            iload 5 /* xorOffset */
        29: .line 278
            aload 11 /* xorKey */
            arraylength
            iload 5 /* xorOffset */
            isub
        30: .line 277
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        31: .line 267
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
            iinc 5 /* xorOffset */ 20
        32: .line 266
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iload 4 /* numRounds */
        33: .line 265
            if_icmplt 19
        34: .line 283
            aload 10 /* encrKey */
            arraylength
            newarray 8
            astore 12 /* plainKey */
        start local 12 // byte[] plainKey
        35: .line 284
            iconst_0
            istore 2 /* i */
            goto 38
        36: .line 285
      StackMap locals: byte[]
      StackMap stack:
            aload 12 /* plainKey */
            iload 2 /* i */
            aload 10 /* encrKey */
            iload 2 /* i */
            baload
            aload 11 /* xorKey */
            iload 2 /* i */
            baload
            ixor
            i2b
            bastore
        37: .line 284
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        38: iload 2 /* i */
            aload 12 /* plainKey */
            arraylength
            if_icmplt 36
        39: .line 295
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.passwdBytes:[B
            invokevirtual java.security.MessageDigest.update:([B)V
        40: .line 296
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.passwdBytes:[B
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        41: .line 297
            aload 0 /* this */
            aconst_null
            putfield sun.security.provider.KeyProtector.passwdBytes:[B
        42: .line 298
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            aload 12 /* plainKey */
            invokevirtual java.security.MessageDigest.update:([B)V
        43: .line 299
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 3 /* digest */
        44: .line 300
            aload 0 /* this */
            getfield sun.security.provider.KeyProtector.md:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.reset:()V
        45: .line 301
            iconst_0
            istore 2 /* i */
            goto 49
        46: .line 302
      StackMap locals:
      StackMap stack:
            aload 3 /* digest */
            iload 2 /* i */
            baload
            aload 8 /* protectedKey */
            bipush 20
            iload 6 /* encrKeyLen */
            iadd
            iload 2 /* i */
            iadd
            baload
            if_icmpeq 48
        47: .line 303
            new java.security.UnrecoverableKeyException
            dup
            ldc "Cannot recover key"
            invokespecial java.security.UnrecoverableKeyException.<init>:(Ljava/lang/String;)V
            athrow
        48: .line 301
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        49: iload 2 /* i */
            aload 3 /* digest */
            arraylength
            if_icmplt 46
        50: .line 311
            new sun.security.util.DerValue
            dup
            aload 12 /* plainKey */
            invokespecial sun.security.util.DerValue.<init>:([B)V
            invokestatic sun.security.pkcs.PKCS8Key.parseKey:(Lsun/security/util/DerValue;)Ljava/security/PrivateKey;
        51: areturn
        52: .line 312
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 13 /* ioe */
        start local 13 // java.io.IOException ioe
        53: .line 313
            new java.security.UnrecoverableKeyException
            dup
            aload 13 /* ioe */
            invokevirtual java.io.IOException.getMessage:()Ljava/lang/String;
            invokespecial java.security.UnrecoverableKeyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 13 // java.io.IOException ioe
        end local 12 // byte[] plainKey
        end local 11 // byte[] xorKey
        end local 10 // byte[] encrKey
        end local 9 // byte[] salt
        end local 8 // byte[] protectedKey
        end local 7 // sun.security.x509.AlgorithmId encrAlg
        end local 6 // int encrKeyLen
        end local 5 // int xorOffset
        end local 4 // int numRounds
        end local 3 // byte[] digest
        end local 2 // int i
        end local 1 // sun.security.pkcs.EncryptedPrivateKeyInfo encrInfo
        end local 0 // sun.security.provider.KeyProtector this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   54     0          this  Lsun/security/provider/KeyProtector;
            0   54     1      encrInfo  Lsun/security/pkcs/EncryptedPrivateKeyInfo;
           16   54     2             i  I
           18   54     3        digest  [B
           11   54     4     numRounds  I
           17   54     5     xorOffset  I
           10   54     6    encrKeyLen  I
            1   54     7       encrAlg  Lsun/security/x509/AlgorithmId;
            7   54     8  protectedKey  [B
            8   54     9          salt  [B
           13   54    10       encrKey  [B
           15   54    11        xorKey  [B
           35   54    12      plainKey  [B
           53   54    13           ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          50    51      52  Class java.io.IOException
    Exceptions:
      throws java.security.UnrecoverableKeyException
    MethodParameters:
          Name  Flags
      encrInfo  
}
SourceFile: "KeyProtector.java"