Initial work to add object handling.

This commit is contained in:
Alessio Di Mauro
2015-07-20 17:04:39 +02:00
parent b71cb628ea
commit fa909fca30
11 changed files with 543 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef OBJECTS_H
#define OBJECTS_H
#include "pkcs11t.h"
#include "obj_types.h"
#include <stdio.h> // TODO: delete
CK_RV get_attribute(CK_OBJECT_HANDLE obj, CK_ATTRIBUTE_PTR template);
//CK_RV get_object_class(CK_OBJECT_HANDLE obj, CK_OBJECT_CLASS_PTR class);
#endif