Add support for loading certificate revocation lists (issue #2213)

This commit is contained in:
Marshall Greenblatt
2017-07-11 15:02:44 -04:00
parent b216f427f6
commit 700123d3eb
9 changed files with 127 additions and 3 deletions

View File

@ -115,4 +115,15 @@ bool CefZipDirectory(const CefString& src_dir,
const CefString& dest_file,
bool include_hidden_files);
///
// Loads the existing "Certificate Revocation Lists" file that is managed by
// Google Chrome. This file can generally be found in Chrome's User Data
// directory (e.g. "C:\Users\[User]\AppData\Local\Google\Chrome\User Data\" on
// Windows) and is updated periodically by Chrome's component updater service.
// Must be called in the browser process after the context has been initialized.
// See https://dev.chromium.org/Home/chromium-security/crlsets for background.
///
/*--cef()--*/
void CefLoadCRLSetsFile(const CefString& path);
#endif // CEF_INCLUDE_CEF_FILE_UTIL_H_