aboutsummaryrefslogtreecommitdiffstats
path: root/include/alg_id.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-06-11 13:32:50 +0000
committerlloyd <[email protected]>2008-06-11 13:32:50 +0000
commitf83988fcd5d8a2d6752d5a0b0c4133207737c1c1 (patch)
treebbe33b2e42bc9614bf2b2b4cd6121586a552ddbc /include/alg_id.h
parent58d72571863987a0f4fc048b1f28619fa0ea798c (diff)
Move AlgorithmIdentifier comparison ops to alg_id.h
Diffstat (limited to 'include/alg_id.h')
-rw-r--r--include/alg_id.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/alg_id.h b/include/alg_id.h
index 8023beead..8187fc070 100644
--- a/include/alg_id.h
+++ b/include/alg_id.h
@@ -34,6 +34,14 @@ class BOTAN_DLL AlgorithmIdentifier : public ASN1_Object
SecureVector<byte> parameters;
};
+/*************************************************
+* Comparison Operations *
+*************************************************/
+bool BOTAN_DLL operator==(const AlgorithmIdentifier&,
+ const AlgorithmIdentifier&);
+bool BOTAN_DLL operator!=(const AlgorithmIdentifier&,
+ const AlgorithmIdentifier&);
+
}
#endif