aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-14 04:14:09 +0000
committerlloyd <[email protected]>2008-10-14 04:14:09 +0000
commitfd30590dbf209cfefb9877dbcb043b955774b11d (patch)
tree5470ddf88e996654e221530632d29757beabfffd /src
parent4d371d79bee83408bf073e97c369178016f49e2f (diff)
Remove two declared but not defined constructors of EAC_Signed_Object
Diffstat (limited to 'src')
-rw-r--r--src/cert/cvc/signed_obj.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/cert/cvc/signed_obj.h b/src/cert/cvc/signed_obj.h
index b55a3d7ec..a983da610 100644
--- a/src/cert/cvc/signed_obj.h
+++ b/src/cert/cvc/signed_obj.h
@@ -73,20 +73,17 @@ class BOTAN_DLL EAC_Signed_Object
*/
std::string PEM_encode() const;
- EAC_Signed_Object(SharedPtrConverter<DataSource>, const std::string&);
- EAC_Signed_Object(const std::string&, const std::string&);
virtual ~EAC_Signed_Object() {}
protected:
void do_decode();
EAC_Signed_Object() {}
+
AlgorithmIdentifier sig_algo;
SecureVector<byte> tbs_bits;
std::string PEM_label_pref;
std::vector<std::string> PEM_labels_allowed;
private:
-
virtual void force_decode() = 0;
-
};
}