You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.0 KiB
81 lines
3.0 KiB
/*****************************************************************************
|
|
* file_crypt_win32.c: Crypt using CryptProtectData
|
|
*****************************************************************************
|
|
* Copyright © 2016 VLC authors, VideoLAN and VideoLabs
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <vlc_keystore.h>
|
|
#include "file_crypt.h"
|
|
|
|
#include <windows.h>
|
|
#include <dpapi.h>
|
|
|
|
typedef BOOL (WINAPI *ProcessFunc)(DATA_BLOB*, LPCWSTR, DATA_BLOB*, PVOID,
|
|
CRYPTPROTECT_PROMPTSTRUCT*, DWORD, DATA_BLOB*);
|
|
|
|
static size_t Process(const uint8_t *p_src, size_t i_src_len, uint8_t **pp_dst, ProcessFunc pf_process)
|
|
{
|
|
DATA_BLOB input_blob =
|
|
{
|
|
.cbData = i_src_len,
|
|
.pbData = (BYTE*)p_src
|
|
};
|
|
DATA_BLOB output_blob;
|
|
|
|
if (pf_process( &input_blob, NULL, NULL, NULL, NULL, CRYPTPROTECT_UI_FORBIDDEN, &output_blob) == FALSE)
|
|
return 0;
|
|
*pp_dst = malloc(output_blob.cbData);
|
|
if( unlikely( *pp_dst == NULL ) )
|
|
{
|
|
LocalFree( output_blob.pbData );
|
|
return 0;
|
|
}
|
|
memcpy( *pp_dst, output_blob.pbData, output_blob.cbData );
|
|
LocalFree( output_blob.pbData );
|
|
return output_blob.cbData;
|
|
}
|
|
|
|
static size_t Decrypt( vlc_keystore *p_keystore, void *p_ctx, const uint8_t *p_src,
|
|
size_t i_src_len, uint8_t ** pp_dst )
|
|
{
|
|
VLC_UNUSED( p_keystore );
|
|
VLC_UNUSED( p_ctx );
|
|
// Cast the function pointer to avoid an invalid parameter warning, regarding the "description"
|
|
// parameter. It's LPCWSTR in the case of CryptProtectData, and LPWSTR* in the case of CryptUnprotect
|
|
// Since we pass NULL anyway, we don't care
|
|
return Process( p_src, i_src_len, pp_dst, (ProcessFunc)&CryptUnprotectData );
|
|
}
|
|
|
|
static size_t Encrypt( vlc_keystore *p_keystore, void *p_ctx, const uint8_t *p_src,
|
|
size_t i_src_len, uint8_t ** pp_dst )
|
|
{
|
|
VLC_UNUSED( p_keystore );
|
|
VLC_UNUSED( p_ctx );
|
|
return Process( p_src, i_src_len, pp_dst, CryptProtectData );
|
|
}
|
|
|
|
int CryptInit(vlc_keystore *p_keystore, struct crypt *p_crypt)
|
|
{
|
|
VLC_UNUSED( p_keystore );
|
|
p_crypt->pf_decrypt = Decrypt;
|
|
p_crypt->pf_encrypt = Encrypt;
|
|
return VLC_SUCCESS;
|
|
}
|
|
|