I am trying to create an HMAC the same as shown on the MSDN site https://docs.microsoft.com/ru-ru/windows/win32/seccrypto/example-c-program--creating-an-hmac?redirectedfrom=MSDN. I just copied the code and ran the compile command g++ hmac_create.c -o result and i get compile error error: 'CALG_HMAC' undeclared (first use in this function); did you mean 'CALG_MAC'? 115 | CALG_HMAC, [...] read more