public class org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder extends org.bouncycastle.operator.bc.BcContentVerifierProviderBuilder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder
  super_class: org.bouncycastle.operator.bc.BcContentVerifierProviderBuilder
{
  private org.bouncycastle.operator.DigestAlgorithmIdentifierFinder digestAlgorithmFinder;
    descriptor: Lorg/bouncycastle/operator/DigestAlgorithmIdentifierFinder;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.bouncycastle.operator.DigestAlgorithmIdentifierFinder);
    descriptor: (Lorg/bouncycastle/operator/DigestAlgorithmIdentifierFinder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder this
        start local 1 // org.bouncycastle.operator.DigestAlgorithmIdentifierFinder digestAlgorithmFinder
         0: .line 20
            aload 0 /* this */
            invokespecial org.bouncycastle.operator.bc.BcContentVerifierProviderBuilder.<init>:()V
         1: .line 22
            aload 0 /* this */
            aload 1 /* digestAlgorithmFinder */
            putfield org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder.digestAlgorithmFinder:Lorg/bouncycastle/operator/DigestAlgorithmIdentifierFinder;
         2: .line 23
            return
        end local 1 // org.bouncycastle.operator.DigestAlgorithmIdentifierFinder digestAlgorithmFinder
        end local 0 // org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    3     0                   this  Lorg/bouncycastle/operator/bc/BcRSAContentVerifierProviderBuilder;
            0    3     1  digestAlgorithmFinder  Lorg/bouncycastle/operator/DigestAlgorithmIdentifierFinder;
    MethodParameters:
                       Name  Flags
      digestAlgorithmFinder  

  protected org.bouncycastle.crypto.Signer createSigner(org.bouncycastle.asn1.x509.AlgorithmIdentifier);
    descriptor: (Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;)Lorg/bouncycastle/crypto/Signer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder this
        start local 1 // org.bouncycastle.asn1.x509.AlgorithmIdentifier sigAlgId
         0: .line 28
            aload 0 /* this */
            getfield org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder.digestAlgorithmFinder:Lorg/bouncycastle/operator/DigestAlgorithmIdentifierFinder;
            aload 1 /* sigAlgId */
            invokeinterface org.bouncycastle.operator.DigestAlgorithmIdentifierFinder.find:(Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;)Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;
            astore 2 /* digAlg */
        start local 2 // org.bouncycastle.asn1.x509.AlgorithmIdentifier digAlg
         1: .line 29
            aload 0 /* this */
            getfield org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder.digestProvider:Lorg/bouncycastle/operator/bc/BcDigestProvider;
            aload 2 /* digAlg */
            invokeinterface org.bouncycastle.operator.bc.BcDigestProvider.get:(Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;)Lorg/bouncycastle/crypto/ExtendedDigest;
            astore 3 /* dig */
        start local 3 // org.bouncycastle.crypto.Digest dig
         2: .line 31
            new org.bouncycastle.crypto.signers.RSADigestSigner
            dup
            aload 3 /* dig */
            invokespecial org.bouncycastle.crypto.signers.RSADigestSigner.<init>:(Lorg/bouncycastle/crypto/Digest;)V
            areturn
        end local 3 // org.bouncycastle.crypto.Digest dig
        end local 2 // org.bouncycastle.asn1.x509.AlgorithmIdentifier digAlg
        end local 1 // org.bouncycastle.asn1.x509.AlgorithmIdentifier sigAlgId
        end local 0 // org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/bouncycastle/operator/bc/BcRSAContentVerifierProviderBuilder;
            0    3     1  sigAlgId  Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;
            1    3     2    digAlg  Lorg/bouncycastle/asn1/x509/AlgorithmIdentifier;
            2    3     3       dig  Lorg/bouncycastle/crypto/Digest;
    Exceptions:
      throws org.bouncycastle.operator.OperatorCreationException
    MethodParameters:
          Name  Flags
      sigAlgId  

  protected org.bouncycastle.crypto.params.AsymmetricKeyParameter extractKeyParameters(org.bouncycastle.asn1.x509.SubjectPublicKeyInfo);
    descriptor: (Lorg/bouncycastle/asn1/x509/SubjectPublicKeyInfo;)Lorg/bouncycastle/crypto/params/AsymmetricKeyParameter;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder this
        start local 1 // org.bouncycastle.asn1.x509.SubjectPublicKeyInfo publicKeyInfo
         0: .line 37
            aload 1 /* publicKeyInfo */
            invokestatic org.bouncycastle.crypto.util.PublicKeyFactory.createKey:(Lorg/bouncycastle/asn1/x509/SubjectPublicKeyInfo;)Lorg/bouncycastle/crypto/params/AsymmetricKeyParameter;
            areturn
        end local 1 // org.bouncycastle.asn1.x509.SubjectPublicKeyInfo publicKeyInfo
        end local 0 // org.bouncycastle.operator.bc.BcRSAContentVerifierProviderBuilder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/bouncycastle/operator/bc/BcRSAContentVerifierProviderBuilder;
            0    1     1  publicKeyInfo  Lorg/bouncycastle/asn1/x509/SubjectPublicKeyInfo;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      publicKeyInfo  
}
SourceFile: "BcRSAContentVerifierProviderBuilder.java"