aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-13 20:11:37 +0000
committerlloyd <[email protected]>2008-10-13 20:11:37 +0000
commit6f9b9a89ad3f6b0104f1f1b5596bc9b09a689ed1 (patch)
tree964e1c1db50e9e9db9d54fadb929bf1285458702 /src/cert
parent0fe7514e9f8890f01405651e42b037602082f488 (diff)
Doxygen comments for eac_asn_obj.h from latest InSiTo
Diffstat (limited to 'src/cert')
-rw-r--r--src/cert/cvc/eac_asn_obj.h152
1 files changed, 132 insertions, 20 deletions
diff --git a/src/cert/cvc/eac_asn_obj.h b/src/cert/cvc/eac_asn_obj.h
index 06fd6a2c1..43210e761 100644
--- a/src/cert/cvc/eac_asn_obj.h
+++ b/src/cert/cvc/eac_asn_obj.h
@@ -1,7 +1,7 @@
/*************************************************
* EAC ASN.1 Objects Header File *
-* (C) 1999-2007 Jack Lloyd *
-* 2007 FlexSecure GmbH *
+* (C) 2007-2008 FlexSecure GmbH *
+* 2008 Jack Lloyd *
*************************************************/
#ifndef BOTAN_EAC_ASN1_OBJ_H__
@@ -13,28 +13,79 @@
namespace Botan {
-/*************************************************
-* CVC EAC Time *
-*************************************************/
+/**
+* This class represents CVC EAC Time objects.
+* It only models year, month and day. Only limited sanity checks of
+* the inputted date value are performed.
+*/
class BOTAN_DLL EAC_Time : public ASN1_Object
{
public:
void encode_into(class DER_Encoder&) const;
void decode_from(class BER_Decoder&);
+ /**
+ * Get a this objects value as a string.
+ * @return the date string
+ */
std::string as_string() const;
+
+ /**
+ * Get a this objects value as a readable formatted string.
+ * @return the date string
+ */
std::string readable_string() const;
- bool time_is_set() const;
- s32bit cmp(const EAC_Time&) const;
+ /**
+ * Find out whether this object's values have been set.
+ * @return true if this object's internal values are set
+ */
+ bool time_is_set() const;
- void set_to(const std::string&);
+ /**
+ * Compare this to another EAC_Time object.
+ * @return -1 if this object's date is earlier than
+ * other, +1 in the opposite case, and 0 if both dates are
+ * equal.
+ */
+ s32bit cmp(const EAC_Time& other) const;
+
+ /**
+ * Set this' value by a string value.
+ * @param str a string in the format "yyyy mm dd",
+ * e.g. "2007 08 01"
+ */
+ void set_to(const std::string& str);
//void set_to(const std::string&, ASN1_Tag);
+
+ /**
+ * Add the specified number of years to this.
+ * @param years the number of years to add
+ */
void add_years(u32bit years);
+
+ /**
+ * Add the specified number of months to this.
+ * @param months the number of months to add
+ */
void add_months(u32bit months);
+ /**
+ * Get the year value of this objects.
+ * @return the year value
+ */
u32bit get_year() const;
+
+ /**
+ * Get the month value of this objects.
+ * @return the month value
+ */
u32bit get_month() const;
+
+ /**
+ * Get the day value of this objects.
+ * @return the day value
+ */
u32bit get_day() const;
EAC_Time(u64bit, ASN1_Tag t = ASN1_Tag(0));
@@ -49,36 +100,87 @@ class BOTAN_DLL EAC_Time : public ASN1_Object
ASN1_Tag tag;
};
-// function definitions in asn_eac_tm.cpp
+/**
+* This class represents CVC CEDs. Only limited sanity checks of
+* the inputted date value are performed.
+*/
class BOTAN_DLL ASN1_Ced : public EAC_Time
{
public:
- ASN1_Ced(std::string const& str="");
- ASN1_Ced(u64bit);
+ /**
+ * Construct a CED from a string value.
+ * @param str a string in the format "yyyy mm dd",
+ * e.g. "2007 08 01"
+ */
+ ASN1_Ced(std::string const& str = "");
+
+ /**
+ * Construct a CED from a timer value.
+ * @param time the number of seconds elapsed midnight, 1st
+ * January 1970 GMT (or 7pm, 31st December 1969 EST) up to the
+ * desired date
+ */
+ ASN1_Ced(u64bit time);
+
+ /**
+ * Copy constructor (for general EAC_Time objects).
+ * @param other the object to copy from
+ */
ASN1_Ced(EAC_Time const& other);
//ASN1_Ced(ASN1_Cex const& cex);
};
-// function definitions in asn_eac_tm.cpp
+
+/**
+* This class represents CVC CEXs. Only limited sanity checks of
+* the inputted date value are performed.
+*/
class BOTAN_DLL ASN1_Cex : public EAC_Time
{
public:
+ /**
+ * Construct a CED from a string value.
+ * @param str a string in the format "yyyy mm dd",
+ * e.g. "2007 08 01"
+ */
ASN1_Cex(std::string const& str="");
- ASN1_Cex(u64bit);
+
+ /**
+ * Construct a CED from a timer value.
+ * @param time the number of seconds elapsed
+ * midnight, 1st
+ * January 1970 GMT (or 7pm, 31st December 1969 EST)
+ * up to the desired date
+ */
+ ASN1_Cex(u64bit time);
+
+ /**
+ * Copy constructor (for general EAC_Time objects).
+ * @param other the object to copy from
+ */
ASN1_Cex(EAC_Time const& other);
//ASN1_Cex(ASN1_Ced const& ced);
};
-/*************************************************
-* String for car/chr of cv certificates *
-*************************************************/
+/**
+* Base class for car/chr of cv certificates.
+*/
class BOTAN_DLL ASN1_EAC_String: public ASN1_Object
{
public:
void encode_into(class DER_Encoder&) const;
void decode_from(class BER_Decoder&);
+ /**
+ * Get this objects string value.
+ * @return the string value
+ */
std::string value() const;
+
+ /**
+ * Get this objects string value.
+ * @return the string value in iso8859 encoding
+ */
std::string iso_8859() const;
ASN1_Tag tagging() const;
@@ -92,19 +194,29 @@ class BOTAN_DLL ASN1_EAC_String: public ASN1_Object
ASN1_Tag tag;
};
-// String tagged with 2
-// function definitions in asn1_eac_str.cpp
+/**
+* This class represents CARs of CVCs. (String tagged with 2)
+*/
class BOTAN_DLL ASN1_Car : public ASN1_EAC_String
{
public:
+ /**
+ * Create a CAR with the specified content.
+ * @param str the CAR value
+ */
ASN1_Car(std::string const& str = "");
};
-// String tagged with 32
-// function definitions in asn1_eac_str.cpp
+/**
+* This class represents CHRs of CVCs (tag 32)
+*/
class BOTAN_DLL ASN1_Chr : public ASN1_EAC_String
{
public:
+ /**
+ * Create a CHR with the specified content.
+ * @param str the CHR value
+ */
ASN1_Chr(std::string const& str = "");
};