Windows error 0x00090320, 590624

Detailed Error Information

SEC_I_INCOMPLETE_CREDENTIALS[1]

MessageThe credentials supplied were not complete, and could not be verified. Additional information can be returned from the context.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeveritySuccess

This 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
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode9 (0x009)
NameFACILITY_SSPI[2][1]
DescriptionThe source of the error code is the Security API layer.[2][1]
Error Code800 (0x0320)

Questions

0votes
1answer

next InitializeSecurityContext failed - SSL CONNECTION using pycurl

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
python
ssl
curl
pycurl

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0