-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Milestone
Description
published/3-02/pkcs11f.h
has a syntax error. A comma is clearly missing a the end of line 1324, causing the compiler to choke.
pkcs11/published/3-02/pkcs11f.h
Lines 1323 to 1325 in 0f2c714
CK_BYTE_PTR pAssociatedData, | |
CK_ULONG ulAssociatedDataLen | |
CK_OBJECT_HANDLE_PTR phKey |
The fix is straightforward.
diff --git a/published/3-02/pkcs11f.h b/published/3-02/pkcs11f.h
index bce18af..bf7ea01 100644
--- a/published/3-02/pkcs11f.h
+++ b/published/3-02/pkcs11f.h
@@ -1321,7 +1321,7 @@ CK_PKCS11_FUNCTION_INFO(C_UnwrapKeyAuthenticated)
CK_ATTRIBUTE_PTR pTemplate,
CK_ULONG ulAttributeCount,
CK_BYTE_PTR pAssociatedData,
- CK_ULONG ulAssociatedDataLen
+ CK_ULONG ulAssociatedDataLen,
CK_OBJECT_HANDLE_PTR phKey
);
#endif
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Todo