[PATCH 2/2] secur32: Implement SECPKG_ATTR_CIPHER_INFO.

Dmitry Timoshkov dmitry at baikal.ru
Tue Jun 21 05:16:10 CDT 2022


Hans Leidekker <wine at gitlab.winehq.org> wrote:

> @@ -1386,6 +1592,21 @@ static NTSTATUS wow64_schan_get_connection_info( void *args )
>      return schan_get_connection_info(&params);
>  }
>  
> +static NTSTATUS wow64_schan_get_cipher_info( void *args )
> +{
> +    struct
> +    {
> +        schan_session session;
> +        PTR32 info;
> +    } const *params32 = args;
> +    struct get_cipher_info_params params =
> +    {
> +        params32->session,
> +        ULongToPtr(params32->info),
> +    };
> +    return schan_get_connection_info(&params);
> +}

Probably it should forward to schan_get_cipher_info().

-- 
Dmitry.



More information about the wine-devel mailing list