#include <Security/context.h>
+//
+// Construct Context objects
+//
+Context::Context(CSSM_CONTEXT_TYPE type, CSSM_ALGORITHMS algorithmId)
+{
+ clearPod();
+ ContextType = type;
+ AlgorithmType = algorithmId;
+}
+
+
//
// Delete a single attribute from a Context by type.
// We implement this by simply nulling out the slot - the memory is not released,