class com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon
  super_class: java.lang.Object
{
  static final java.lang.String rsaEncryptionAlgorithmWithOAEP;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "RSA_OAEP"

  static byte[] version;
    descriptor: [B
    flags: (0x0008) ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 43
            iconst_1
            newarray 8
            dup
            iconst_0
            iconst_1
            bastore
            putstatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.version:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon this
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/microsoft/sqlserver/jdbc/KeyStoreProviderCommon;

  static void validateEncryptionAlgorithm(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // java.lang.String encryptionAlgorithm
        start local 1 // boolean isEncrypt
         0: .line 46
            iload 1 /* isEncrypt */
            ifeq 1
            ldc "R_NullKeyEncryptionAlgorithm"
            goto 2
      StackMap locals:
      StackMap stack:
         1: ldc "R_NullKeyEncryptionAlgorithmInternal"
      StackMap locals:
      StackMap stack: java.lang.String
         2: astore 2 /* errString */
        start local 2 // java.lang.String errString
         3: .line 47
            aload 0 /* encryptionAlgorithm */
            ifnonnull 5
         4: .line 49
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aconst_null
            aload 2 /* errString */
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            aconst_null
            iconst_0
            iconst_0
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;IZ)V
            athrow
         5: .line 53
      StackMap locals: java.lang.String
      StackMap stack:
            iload 1 /* isEncrypt */
            ifeq 6
            ldc "R_InvalidKeyEncryptionAlgorithm"
            goto 7
      StackMap locals:
      StackMap stack:
         6: ldc "R_InvalidKeyEncryptionAlgorithmInternal"
      StackMap locals:
      StackMap stack: java.lang.String
         7: astore 2 /* errString */
         8: .line 54
            ldc "RSA_OAEP"
            aload 0 /* encryptionAlgorithm */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 12
         9: .line 56
            new java.text.MessageFormat
            dup
            aload 2 /* errString */
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.text.MessageFormat.<init>:(Ljava/lang/String;)V
            astore 3 /* form */
        start local 3 // java.text.MessageFormat form
        10: .line 57
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* encryptionAlgorithm */
            aastore
            dup
            iconst_1
            ldc "RSA_OAEP"
            aastore
            astore 4 /* msgArgs */
        start local 4 // java.lang.Object[] msgArgs
        11: .line 58
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aload 3 /* form */
            aload 4 /* msgArgs */
            invokevirtual java.text.MessageFormat.format:(Ljava/lang/Object;)Ljava/lang/String;
            aconst_null
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.lang.Object[] msgArgs
        end local 3 // java.text.MessageFormat form
        12: .line 61
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String errString
        end local 1 // boolean isEncrypt
        end local 0 // java.lang.String encryptionAlgorithm
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   13     0  encryptionAlgorithm  Ljava/lang/String;
            0   13     1            isEncrypt  Z
            3   13     2            errString  Ljava/lang/String;
           10   12     3                 form  Ljava/text/MessageFormat;
           11   12     4              msgArgs  [Ljava/lang/Object;
    Exceptions:
      throws com.microsoft.sqlserver.jdbc.SQLServerException
    MethodParameters:
                     Name  Flags
      encryptionAlgorithm  
      isEncrypt            

  static void validateNonEmptyMasterKeyPath(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // java.lang.String masterKeyPath
         0: .line 64
            aload 0 /* masterKeyPath */
            ifnull 1
            aload 0 /* masterKeyPath */
            invokevirtual java.lang.String.trim:()Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ifne 4
         1: .line 65
      StackMap locals:
      StackMap stack:
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aconst_null
            ldc "R_InvalidMasterKeyDetails"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            aconst_null
            iconst_0
         2: .line 66
            iconst_0
         3: .line 65
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;IZ)V
            athrow
         4: .line 68
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.String masterKeyPath
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0  masterKeyPath  Ljava/lang/String;
    Exceptions:
      throws com.microsoft.sqlserver.jdbc.SQLServerException
    MethodParameters:
               Name  Flags
      masterKeyPath  

  static byte[] decryptColumnEncryptionKey(java.lang.String, java.lang.String, byte[], com.microsoft.sqlserver.jdbc.CertificateDetails);
    descriptor: (Ljava/lang/String;Ljava/lang/String;[BLcom/microsoft/sqlserver/jdbc/CertificateDetails;)[B
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=13, args_size=4
        start local 0 // java.lang.String masterKeyPath
        start local 1 // java.lang.String encryptionAlgorithm
        start local 2 // byte[] encryptedColumnEncryptionKey
        start local 3 // com.microsoft.sqlserver.jdbc.CertificateDetails certificateDetails
         0: .line 72
            aload 2 /* encryptedColumnEncryptionKey */
            ifnonnull 4
         1: .line 74
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aconst_null
            ldc "R_NullEncryptedColumnEncryptionKey"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
         2: .line 75
            aconst_null
            iconst_0
            iconst_0
         3: .line 74
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;IZ)V
            athrow
         4: .line 77
      StackMap locals:
      StackMap stack:
            aload 2 /* encryptedColumnEncryptionKey */
            arraylength
            ifne 8
         5: .line 79
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aconst_null
            ldc "R_EmptyEncryptedColumnEncryptionKey"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
         6: .line 80
            aconst_null
            iconst_0
            iconst_0
         7: .line 79
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;IZ)V
            athrow
         8: .line 84
      StackMap locals:
      StackMap stack:
            aload 1 /* encryptionAlgorithm */
            iconst_0
            invokestatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.validateEncryptionAlgorithm:(Ljava/lang/String;Z)V
         9: .line 86
            getstatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.version:[B
            arraylength
            istore 4 /* currentIndex */
        start local 4 // int currentIndex
        10: .line 87
            aload 2 /* encryptedColumnEncryptionKey */
            iload 4 /* currentIndex */
            invokestatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.convertTwoBytesToShort:([BI)S
            istore 5 /* keyPathLength */
        start local 5 // int keyPathLength
        11: .line 89
            iinc 4 /* currentIndex */ 2
        12: .line 92
            aload 2 /* encryptedColumnEncryptionKey */
            iload 4 /* currentIndex */
            invokestatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.convertTwoBytesToShort:([BI)S
            istore 6 /* cipherTextLength */
        start local 6 // int cipherTextLength
        13: .line 93
            iinc 4 /* currentIndex */ 2
        14: .line 95
            iload 4 /* currentIndex */
            iload 5 /* keyPathLength */
            iadd
            istore 4 /* currentIndex */
        15: .line 97
            aload 2 /* encryptedColumnEncryptionKey */
            arraylength
            iload 4 /* currentIndex */
            isub
            iload 6 /* cipherTextLength */
            isub
            istore 7 /* signatureLength */
        start local 7 // int signatureLength
        16: .line 100
            iload 6 /* cipherTextLength */
            newarray 8
            astore 8 /* cipherText */
        start local 8 // byte[] cipherText
        17: .line 101
            aload 2 /* encryptedColumnEncryptionKey */
            iload 4 /* currentIndex */
            aload 8 /* cipherText */
            iconst_0
            iload 6 /* cipherTextLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 102
            iload 4 /* currentIndex */
            iload 6 /* cipherTextLength */
            iadd
            istore 4 /* currentIndex */
        19: .line 104
            iload 7 /* signatureLength */
            newarray 8
            astore 9 /* signature */
        start local 9 // byte[] signature
        20: .line 105
            aload 2 /* encryptedColumnEncryptionKey */
            iload 4 /* currentIndex */
            aload 9 /* signature */
            iconst_0
            iload 7 /* signatureLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 107
            aload 2 /* encryptedColumnEncryptionKey */
            arraylength
            aload 9 /* signature */
            arraylength
            isub
            newarray 8
            astore 10 /* hash */
        start local 10 // byte[] hash
        22: .line 109
            aload 2 /* encryptedColumnEncryptionKey */
            iconst_0
            aload 10 /* hash */
            iconst_0
        23: .line 110
            aload 2 /* encryptedColumnEncryptionKey */
            arraylength
            aload 9 /* signature */
            arraylength
            isub
        24: .line 109
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        25: .line 112
            aload 10 /* hash */
            aload 9 /* signature */
            aload 3 /* certificateDetails */
            getfield com.microsoft.sqlserver.jdbc.CertificateDetails.certificate:Ljava/security/cert/X509Certificate;
            aload 0 /* masterKeyPath */
            invokestatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.verifyRSASignature:([B[BLjava/security/cert/X509Certificate;Ljava/lang/String;)Z
            ifne 29
        26: .line 113
            new java.text.MessageFormat
            dup
            ldc "R_InvalidCertificateSignature"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.text.MessageFormat.<init>:(Ljava/lang/String;)V
            astore 11 /* form */
        start local 11 // java.text.MessageFormat form
        27: .line 114
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* masterKeyPath */
            aastore
            astore 12 /* msgArgs */
        start local 12 // java.lang.Object[] msgArgs
        28: .line 115
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aload 11 /* form */
            aload 12 /* msgArgs */
            invokevirtual java.text.MessageFormat.format:(Ljava/lang/Object;)Ljava/lang/String;
            aconst_null
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 12 // java.lang.Object[] msgArgs
        end local 11 // java.text.MessageFormat form
        29: .line 118
      StackMap locals: java.lang.String java.lang.String byte[] com.microsoft.sqlserver.jdbc.CertificateDetails int int int int byte[] byte[] byte[]
      StackMap stack:
            aload 8 /* cipherText */
            aload 3 /* certificateDetails */
            invokestatic com.microsoft.sqlserver.jdbc.KeyStoreProviderCommon.decryptRSAOAEP:([BLcom/microsoft/sqlserver/jdbc/CertificateDetails;)[B
            astore 11 /* plainCEK */
        start local 11 // byte[] plainCEK
        30: .line 120
            aload 11 /* plainCEK */
            areturn
        end local 11 // byte[] plainCEK
        end local 10 // byte[] hash
        end local 9 // byte[] signature
        end local 8 // byte[] cipherText
        end local 7 // int signatureLength
        end local 6 // int cipherTextLength
        end local 5 // int keyPathLength
        end local 4 // int currentIndex
        end local 3 // com.microsoft.sqlserver.jdbc.CertificateDetails certificateDetails
        end local 2 // byte[] encryptedColumnEncryptionKey
        end local 1 // java.lang.String encryptionAlgorithm
        end local 0 // java.lang.String masterKeyPath
      LocalVariableTable:
        Start  End  Slot                          Name  Signature
            0   31     0                 masterKeyPath  Ljava/lang/String;
            0   31     1           encryptionAlgorithm  Ljava/lang/String;
            0   31     2  encryptedColumnEncryptionKey  [B
            0   31     3            certificateDetails  Lcom/microsoft/sqlserver/jdbc/CertificateDetails;
           10   31     4                  currentIndex  I
           11   31     5                 keyPathLength  I
           13   31     6              cipherTextLength  I
           16   31     7               signatureLength  I
           17   31     8                    cipherText  [B
           20   31     9                     signature  [B
           22   31    10                          hash  [B
           27   29    11                          form  Ljava/text/MessageFormat;
           28   29    12                       msgArgs  [Ljava/lang/Object;
           30   31    11                      plainCEK  [B
    Exceptions:
      throws com.microsoft.sqlserver.jdbc.SQLServerException
    MethodParameters:
                              Name  Flags
      masterKeyPath                 
      encryptionAlgorithm           
      encryptedColumnEncryptionKey  
      certificateDetails            

  private static byte[] decryptRSAOAEP(byte[], com.microsoft.sqlserver.jdbc.CertificateDetails);
    descriptor: ([BLcom/microsoft/sqlserver/jdbc/CertificateDetails;)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // byte[] cipherText
        start local 1 // com.microsoft.sqlserver.jdbc.CertificateDetails certificateDetails
         0: .line 125
            aconst_null
            astore 2 /* plainCEK */
        start local 2 // byte[] plainCEK
         1: .line 127
            ldc "RSA/ECB/OAEPWithSHA-1AndMGF1Padding"
            invokestatic javax.crypto.Cipher.getInstance:(Ljava/lang/String;)Ljavax/crypto/Cipher;
            astore 3 /* rsa */
        start local 3 // javax.crypto.Cipher rsa
         2: .line 128
            aload 3 /* rsa */
            iconst_2
            aload 1 /* certificateDetails */
            getfield com.microsoft.sqlserver.jdbc.CertificateDetails.privateKey:Ljava/security/Key;
            invokevirtual javax.crypto.Cipher.init:(ILjava/security/Key;)V
         3: .line 129
            aload 3 /* rsa */
            aload 0 /* cipherText */
            invokevirtual javax.crypto.Cipher.update:([B)[B
            pop
         4: .line 130
            aload 3 /* rsa */
            invokevirtual javax.crypto.Cipher.doFinal:()[B
            astore 2 /* plainCEK */
        end local 3 // javax.crypto.Cipher rsa
         5: .line 131
            goto 10
         6: .line 132
      StackMap locals: byte[] com.microsoft.sqlserver.jdbc.CertificateDetails byte[]
      StackMap stack: java.security.GeneralSecurityException
            astore 3 /* e */
        start local 3 // java.security.GeneralSecurityException e
         7: .line 133
            new java.text.MessageFormat
            dup
            ldc "R_CEKDecryptionFailed"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.text.MessageFormat.<init>:(Ljava/lang/String;)V
            astore 4 /* form */
        start local 4 // java.text.MessageFormat form
         8: .line 134
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 3 /* e */
            invokevirtual java.security.GeneralSecurityException.getMessage:()Ljava/lang/String;
            aastore
            astore 5 /* msgArgs */
        start local 5 // java.lang.Object[] msgArgs
         9: .line 135
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aload 4 /* form */
            aload 5 /* msgArgs */
            invokevirtual java.text.MessageFormat.format:(Ljava/lang/Object;)Ljava/lang/String;
            aload 3 /* e */
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Object[] msgArgs
        end local 4 // java.text.MessageFormat form
        end local 3 // java.security.GeneralSecurityException e
        10: .line 138
      StackMap locals:
      StackMap stack:
            aload 2 /* plainCEK */
            areturn
        end local 2 // byte[] plainCEK
        end local 1 // com.microsoft.sqlserver.jdbc.CertificateDetails certificateDetails
        end local 0 // byte[] cipherText
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   11     0          cipherText  [B
            0   11     1  certificateDetails  Lcom/microsoft/sqlserver/jdbc/CertificateDetails;
            1   11     2            plainCEK  [B
            2    5     3                 rsa  Ljavax/crypto/Cipher;
            7   10     3                   e  Ljava/security/GeneralSecurityException;
            8   10     4                form  Ljava/text/MessageFormat;
            9   10     5             msgArgs  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     5       6  Class java.security.InvalidKeyException
           1     5       6  Class java.security.NoSuchAlgorithmException
           1     5       6  Class javax.crypto.NoSuchPaddingException
           1     5       6  Class javax.crypto.IllegalBlockSizeException
           1     5       6  Class javax.crypto.BadPaddingException
    Exceptions:
      throws com.microsoft.sqlserver.jdbc.SQLServerException
    MethodParameters:
                    Name  Flags
      cipherText          
      certificateDetails  

  static boolean verifyRSASignature(byte[], byte[], java.security.cert.X509Certificate, java.lang.String);
    descriptor: ([B[BLjava/security/cert/X509Certificate;Ljava/lang/String;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // byte[] hash
        start local 1 // byte[] signature
        start local 2 // java.security.cert.X509Certificate certificate
        start local 3 // java.lang.String masterKeyPath
         0: .line 145
            iconst_0
            istore 5 /* verificationSuccess */
        start local 5 // boolean verificationSuccess
         1: .line 147
            ldc "SHA256withRSA"
            invokestatic java.security.Signature.getInstance:(Ljava/lang/String;)Ljava/security/Signature;
            astore 4 /* signVerify */
        start local 4 // java.security.Signature signVerify
         2: .line 148
            aload 4 /* signVerify */
            aload 2 /* certificate */
            invokevirtual java.security.cert.X509Certificate.getPublicKey:()Ljava/security/PublicKey;
            invokevirtual java.security.Signature.initVerify:(Ljava/security/PublicKey;)V
         3: .line 149
            aload 4 /* signVerify */
            aload 0 /* hash */
            invokevirtual java.security.Signature.update:([B)V
         4: .line 150
            aload 4 /* signVerify */
            aload 1 /* signature */
            invokevirtual java.security.Signature.verify:([B)Z
            istore 5 /* verificationSuccess */
         5: .line 151
            goto 10
        end local 4 // java.security.Signature signVerify
      StackMap locals: byte[] byte[] java.security.cert.X509Certificate java.lang.String top int
      StackMap stack: java.security.GeneralSecurityException
         6: astore 6 /* e */
        start local 6 // java.security.GeneralSecurityException e
         7: .line 152
            new java.text.MessageFormat
            dup
            ldc "R_InvalidCertificateSignature"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial java.text.MessageFormat.<init>:(Ljava/lang/String;)V
            astore 7 /* form */
        start local 7 // java.text.MessageFormat form
         8: .line 153
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 3 /* masterKeyPath */
            aastore
            astore 8 /* msgArgs */
        start local 8 // java.lang.Object[] msgArgs
         9: .line 154
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aload 7 /* form */
            aload 8 /* msgArgs */
            invokevirtual java.text.MessageFormat.format:(Ljava/lang/Object;)Ljava/lang/String;
            aload 6 /* e */
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.lang.Object[] msgArgs
        end local 7 // java.text.MessageFormat form
        end local 6 // java.security.GeneralSecurityException e
        start local 4 // java.security.Signature signVerify
        10: .line 157
      StackMap locals: byte[] byte[] java.security.cert.X509Certificate java.lang.String java.security.Signature int
      StackMap stack:
            iload 5 /* verificationSuccess */
            ireturn
        end local 5 // boolean verificationSuccess
        end local 4 // java.security.Signature signVerify
        end local 3 // java.lang.String masterKeyPath
        end local 2 // java.security.cert.X509Certificate certificate
        end local 1 // byte[] signature
        end local 0 // byte[] hash
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   11     0                 hash  [B
            0   11     1            signature  [B
            0   11     2          certificate  Ljava/security/cert/X509Certificate;
            0   11     3        masterKeyPath  Ljava/lang/String;
            2    6     4           signVerify  Ljava/security/Signature;
           10   11     4           signVerify  Ljava/security/Signature;
            1   11     5  verificationSuccess  Z
            7   10     6                    e  Ljava/security/GeneralSecurityException;
            8   10     7                 form  Ljava/text/MessageFormat;
            9   10     8              msgArgs  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           1     5       6  Class java.security.InvalidKeyException
           1     5       6  Class java.security.NoSuchAlgorithmException
           1     5       6  Class java.security.SignatureException
    Exceptions:
      throws com.microsoft.sqlserver.jdbc.SQLServerException
    MethodParameters:
               Name  Flags
      hash           
      signature      
      certificate    
      masterKeyPath  

  private static short convertTwoBytesToShort(byte[], int);
    descriptor: ([BI)S
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // byte[] input
        start local 1 // int index
         0: .line 164
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* input */
            arraylength
            if_icmplt 4
         1: .line 165
            new com.microsoft.sqlserver.jdbc.SQLServerException
            dup
            aconst_null
            ldc "R_ByteToShortConversion"
            invokestatic com.microsoft.sqlserver.jdbc.SQLServerException.getErrString:(Ljava/lang/String;)Ljava/lang/String;
            aconst_null
            iconst_0
         2: .line 166
            iconst_0
         3: .line 165
            invokespecial com.microsoft.sqlserver.jdbc.SQLServerException.<init>:(Ljava/lang/Object;Ljava/lang/String;Ljava/lang/String;IZ)V
            athrow
         4: .line 168
      StackMap locals:
      StackMap stack:
            iconst_2
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 3 /* byteBuffer */
        start local 3 // java.nio.ByteBuffer byteBuffer
         5: .line 169
            aload 3 /* byteBuffer */
            getstatic java.nio.ByteOrder.LITTLE_ENDIAN:Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         6: .line 170
            aload 3 /* byteBuffer */
            aload 0 /* input */
            iload 1 /* index */
            baload
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         7: .line 171
            aload 3 /* byteBuffer */
            aload 0 /* input */
            iload 1 /* index */
            iconst_1
            iadd
            baload
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         8: .line 172
            aload 3 /* byteBuffer */
            iconst_0
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            istore 2 /* shortVal */
        start local 2 // short shortVal
         9: .line 173
            iload 2 /* shortVal */
            ireturn
        end local 3 // java.nio.ByteBuffer byteBuffer
        end local 2 // short shortVal
        end local 1 // int index
        end local 0 // byte[] input
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0       input  [B
            0   10     1       index  I
            9   10     2    shortVal  S
            5   10     3  byteBuffer  Ljava/nio/ByteBuffer;
    Exceptions:
      throws com.microsoft.sqlserver.jdbc.SQLServerException
    MethodParameters:
       Name  Flags
      input  
      index  
}
SourceFile: "KeyStoreProviderCommon.java"