libcryptosec
Asn1Integer.h
Go to the documentation of this file.
1 #ifndef ASN1INTEGER_H_
2 #define ASN1INTEGER_H_
3 
4 #include "Asn1Type.h"
6 
7 class Asn1Integer : public Asn1Type
8 {
9 public:
10  Asn1Integer();
11  Asn1Integer(ASN1_TYPE* type);
12  virtual ~Asn1Integer();
13 
14  BigInteger* getValue() const throw();
15  void setValue(const BigInteger b) throw();
16 };
17 
18 #endif /*ASN1INTEGER_H_*/
Classe usada para representar números grandes. A limitação do tamanho do número depende da memória di...
Definition: BigInteger.h:23
Asn1Integer()
Definition: Asn1Integer.cpp:3
Definition: Asn1Type.h:11
BigInteger * getValue() const
Definition: Asn1Integer.cpp:18
Definition: Asn1Integer.h:7
void setValue(const BigInteger b)
Definition: Asn1Integer.cpp:31
virtual ~Asn1Integer()
Definition: Asn1Integer.cpp:13