helpers.cpp 94 B

123456
  1. #include "helpers.hpp"
  2. void FreeProvider(HCRYPTPROV prov)
  3. {
  4. CryptReleaseContext(prov, 0);
  5. }