public abstract class org.bouncycastle.asn1.x509.X509NameEntryConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.bouncycastle.asn1.x509.X509NameEntryConverter
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.x509.X509NameEntryConverter this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.bouncycastle.asn1.x509.X509NameEntryConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/x509/X509NameEntryConverter;

  protected org.bouncycastle.asn1.ASN1Primitive convertHexEncoded(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Lorg/bouncycastle/asn1/ASN1Primitive;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // org.bouncycastle.asn1.x509.X509NameEntryConverter this
        start local 1 // java.lang.String str
        start local 2 // int off
         0: .line 65
            aload 1 /* str */
            invokestatic org.bouncycastle.util.Strings.toLowerCase:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* str */
         1: .line 66
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            iload 2 /* off */
            isub
            iconst_2
            idiv
            newarray 8
            astore 3 /* data */
        start local 3 // byte[] data
         2: .line 67
            iconst_0
            istore 4 /* index */
        start local 4 // int index
         3: goto 15
         4: .line 69
      StackMap locals: byte[] int
      StackMap stack:
            aload 1 /* str */
            iload 4 /* index */
            iconst_2
            imul
            iload 2 /* off */
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* left */
        start local 5 // char left
         5: .line 70
            aload 1 /* str */
            iload 4 /* index */
            iconst_2
            imul
            iload 2 /* off */
            iadd
            iconst_1
            iadd
            invokevirtual java.lang.String.charAt:(I)C
            istore 6 /* right */
        start local 6 // char right
         6: .line 72
            iload 5 /* left */
            bipush 97
            if_icmpge 9
         7: .line 74
            aload 3 /* data */
            iload 4 /* index */
            iload 5 /* left */
            bipush 48
            isub
            iconst_4
            ishl
            i2b
            bastore
         8: .line 75
            goto 10
         9: .line 78
      StackMap locals: int int
      StackMap stack:
            aload 3 /* data */
            iload 4 /* index */
            iload 5 /* left */
            bipush 97
            isub
            bipush 10
            iadd
            iconst_4
            ishl
            i2b
            bastore
        10: .line 80
      StackMap locals:
      StackMap stack:
            iload 6 /* right */
            bipush 97
            if_icmpge 13
        11: .line 82
            aload 3 /* data */
            iload 4 /* index */
            dup2
            baload
            iload 6 /* right */
            bipush 48
            isub
            i2b
            ior
            i2b
            bastore
        12: .line 83
            goto 14
        13: .line 86
      StackMap locals:
      StackMap stack:
            aload 3 /* data */
            iload 4 /* index */
            dup2
            baload
            iload 6 /* right */
            bipush 97
            isub
            bipush 10
            iadd
            i2b
            ior
            i2b
            bastore
        end local 6 // char right
        end local 5 // char left
        14: .line 67
      StackMap locals:
      StackMap stack:
            iinc 4 /* index */ 1
      StackMap locals:
      StackMap stack:
        15: iload 4 /* index */
            aload 3 /* data */
            arraylength
            if_icmpne 4
        end local 4 // int index
        16: .line 90
            new org.bouncycastle.asn1.ASN1InputStream
            dup
            aload 3 /* data */
            invokespecial org.bouncycastle.asn1.ASN1InputStream.<init>:([B)V
            astore 4 /* aIn */
        start local 4 // org.bouncycastle.asn1.ASN1InputStream aIn
        17: .line 92
            aload 4 /* aIn */
            invokevirtual org.bouncycastle.asn1.ASN1InputStream.readObject:()Lorg/bouncycastle/asn1/ASN1Primitive;
            areturn
        end local 4 // org.bouncycastle.asn1.ASN1InputStream aIn
        end local 3 // byte[] data
        end local 2 // int off
        end local 1 // java.lang.String str
        end local 0 // org.bouncycastle.asn1.x509.X509NameEntryConverter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lorg/bouncycastle/asn1/x509/X509NameEntryConverter;
            0   18     1    str  Ljava/lang/String;
            0   18     2    off  I
            2   18     3   data  [B
            3   16     4  index  I
            5   14     5   left  C
            6   14     6  right  C
           17   18     4    aIn  Lorg/bouncycastle/asn1/ASN1InputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      off   

  protected boolean canBePrintable(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.bouncycastle.asn1.x509.X509NameEntryConverter this
        start local 1 // java.lang.String str
         0: .line 102
            aload 1 /* str */
            invokestatic org.bouncycastle.asn1.DERPrintableString.isPrintableString:(Ljava/lang/String;)Z
            ireturn
        end local 1 // java.lang.String str
        end local 0 // org.bouncycastle.asn1.x509.X509NameEntryConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/x509/X509NameEntryConverter;
            0    1     1   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   

  public abstract org.bouncycastle.asn1.ASN1Primitive getConvertedValue(org.bouncycastle.asn1.ASN1ObjectIdentifier, java.lang.String);
    descriptor: (Lorg/bouncycastle/asn1/ASN1ObjectIdentifier;Ljava/lang/String;)Lorg/bouncycastle/asn1/ASN1Primitive;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      oid    
      value  
}
SourceFile: "X509NameEntryConverter.java"