Windows error 0x00090320, 590624 Detailed Error Information SEC_I_INCOMPLETE_CREDENTIALS[1] Message The credentials supplied were not complete, and could not be verified. Additional information can be returned from the context. Declared in winerror.h
HRESULT analysis[2] Flags Severity SuccessThis code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
Reserved (R) false Origin Microsoft NTSTATUS false Reserved (X) false Facility Code 9 (0x009) Name FACILITY_SSPI [2] [1] Description The source of the error code is the Security API layer.[2] [1] Error Code 800 (0x0320)
Questions I'm struggling to translate command like this below curl "https://my.website.address.com" --key path\to\client_key.pem --cert path\to\client.crt --pass P4$$w0rD to a python script using pycurl: import pycurl URL = "https://my.website.address.com" KEY_PATH = "path\to\client_key.pem" CERT_PATH = "path\to\client.crt" CA_PATH = "path\to\curl-ca-bundle.crt" USERNAME = "my_username" PASSWORD = "P4$$w0rD" c = pycurl.Curl() c.setopt(pycurl.URL, URL) c.setopt(pycurl.SSLKEY, KEY_PATH) c.setopt(pycurl.PASSWORD, [...]
read more Comments Leave a comment Sources winerror.h from Windows SDK 10.0.14393.0 https://msdn.microsoft.com/en-us/library/cc231198.aspx User contributions licensed under CC BY-SA 3.0