Commit b4ca2d00 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

dssenh: Add support for exporting private keys.

parent 1b1637fc
...@@ -578,6 +578,7 @@ BOOL WINAPI CPExportKey( HCRYPTPROV hprov, HCRYPTKEY hkey, HCRYPTKEY hexpkey, DW ...@@ -578,6 +578,7 @@ BOOL WINAPI CPExportKey( HCRYPTPROV hprov, HCRYPTKEY hkey, HCRYPTKEY hexpkey, DW
BYTE *data, DWORD *len ) BYTE *data, DWORD *len )
{ {
struct key *key = (struct key *)hkey; struct key *key = (struct key *)hkey;
const WCHAR *type;
TRACE( "%p, %p, %p, %08x, %08x, %p, %p\n", (void *)hprov, (void *)hkey, (void *)hexpkey, blobtype, flags, TRACE( "%p, %p, %p, %08x, %08x, %p, %p\n", (void *)hprov, (void *)hkey, (void *)hexpkey, blobtype, flags,
data, len ); data, len );
...@@ -588,18 +589,28 @@ BOOL WINAPI CPExportKey( HCRYPTPROV hprov, HCRYPTKEY hkey, HCRYPTKEY hexpkey, DW ...@@ -588,18 +589,28 @@ BOOL WINAPI CPExportKey( HCRYPTPROV hprov, HCRYPTKEY hkey, HCRYPTKEY hexpkey, DW
FIXME( "export key not supported\n" ); FIXME( "export key not supported\n" );
return FALSE; return FALSE;
} }
if (blobtype != PUBLICKEYBLOB) if (flags)
{ {
FIXME( "blob type %u not supported\n", blobtype ); FIXME( "flags %08x not supported\n", flags );
return FALSE; return FALSE;
} }
if (flags)
switch (blobtype)
{ {
FIXME( "flags %08x not supported\n", flags ); case PUBLICKEYBLOB:
type = LEGACY_DSA_V2_PUBLIC_BLOB;
break;
case PRIVATEKEYBLOB:
type = LEGACY_DSA_V2_PRIVATE_BLOB;
break;
default:
FIXME( "blob type %u not supported\n", blobtype );
return FALSE; return FALSE;
} }
return !BCryptExportKey( key->handle, NULL, LEGACY_DSA_V2_PUBLIC_BLOB, data, *len, len, 0 ); return !BCryptExportKey( key->handle, NULL, type, data, *len, len, 0 );
} }
BOOL WINAPI CPDuplicateKey( HCRYPTPROV hprov, HCRYPTKEY hkey, DWORD *reserved, DWORD flags, HCRYPTKEY *ret_key ) BOOL WINAPI CPDuplicateKey( HCRYPTPROV hprov, HCRYPTKEY hkey, DWORD *reserved, DWORD flags, HCRYPTKEY *ret_key )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment