[PATCH] bcrypt: Add stubs for DSS private key functions on macOS.

Huw Davies huw at codeweavers.com
Fri Jun 5 07:59:03 CDT 2020


Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 dlls/bcrypt/macos.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/dlls/bcrypt/macos.c b/dlls/bcrypt/macos.c
index f635ba4bc8e..7f902535b8f 100644
--- a/dlls/bcrypt/macos.c
+++ b/dlls/bcrypt/macos.c
@@ -240,12 +240,24 @@ NTSTATUS key_asymmetric_verify( struct key *key, void *padding, UCHAR *hash, ULO
     return STATUS_NOT_IMPLEMENTED;
 }
 
+NTSTATUS key_export_dsa_capi( struct key *key, UCHAR *buf, ULONG len, ULONG *ret_len )
+{
+    FIXME( "not implemented on Mac\n" );
+    return STATUS_NOT_IMPLEMENTED;
+}
+
 NTSTATUS key_export_ecc( struct key *key, UCHAR *output, ULONG len, ULONG *ret_len )
 {
     FIXME( "not implemented on Mac\n" );
     return STATUS_NOT_IMPLEMENTED;
 }
 
+NTSTATUS key_import_dsa_capi( struct key *key, UCHAR *buf, ULONG len )
+{
+    FIXME( "not implemented on Mac\n" );
+    return STATUS_NOT_IMPLEMENTED;
+}
+
 NTSTATUS key_import_ecc( struct key *key, UCHAR *input, ULONG len )
 {
     FIXME( "not implemented on Mac\n" );
-- 
2.23.0




More information about the wine-devel mailing list