diff --git a/include/WinStd/Crypt.h b/include/WinStd/Crypt.h index eea16697..aa61becb 100644 --- a/include/WinStd/Crypt.h +++ b/include/WinStd/Crypt.h @@ -209,8 +209,6 @@ inline BOOL CryptGetKeyParam(_In_ HCRYPTKEY hKey, _In_ DWORD dwParam, _Out_ T &d template inline BOOL CryptExportKey(_In_ HCRYPTKEY hKey, _In_ HCRYPTKEY hExpKey, _In_ DWORD dwBlobType, _In_ DWORD dwFlags, _Out_ std::vector<_Ty, _Ax> &aData) { - assert(0); // TODO: Test this code. - DWORD dwKeyBLOBSize; if (CryptExportKey(hKey, hExpKey, dwBlobType, dwFlags, NULL, &dwKeyBLOBSize)) {