Class DerInteger

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static byte TAG_INTEGER  
      private java.math.BigInteger value  
    • Constructor Summary

      Constructors 
      Constructor Description
      DerInteger()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected void decodeValue()
      Decodifica el valor DER establecido comprobando que corresponde al esperado y formando las estructuras internas.
      protected byte getDefaultTag()
      Obtiene la etiqueta de tipo ASN.1 del objeto.
      java.math.BigInteger getIntegerValue()
      Obtiene el valor entero (BigInteger) del objeto.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • value

        private transient java.math.BigInteger value
    • Constructor Detail

      • DerInteger

        public DerInteger()
    • Method Detail

      • decodeValue

        protected void decodeValue()
                            throws TlvException
        Description copied from class: DecoderObject
        Decodifica el valor DER establecido comprobando que corresponde al esperado y formando las estructuras internas.
        Specified by:
        decodeValue in class DecoderObject
        Throws:
        TlvException - Si hay errores relativos a los TLV DER.
      • getIntegerValue

        public java.math.BigInteger getIntegerValue()
        Obtiene el valor entero (BigInteger) del objeto.
        Returns:
        Valor del objeto.
      • getDefaultTag

        protected byte getDefaultTag()
        Description copied from class: DecoderObject
        Obtiene la etiqueta de tipo ASN.1 del objeto.
        Specified by:
        getDefaultTag in class DecoderObject
        Returns:
        Etiqueta de tipo ASN.1 del objeto.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object