CryptUnregisterOIDFunction

[DllImport("Crypt32.dll", SetLastError = true)]
public static extern bool CryptUnregisterOIDFunction(
   uint dwEncodingType,
   string pszFuncName,
   string pszOID
);

Microsoft documentation: Link

Last updated