xref: /freebsd/crypto/heimdal/lib/ntlm/ntlm_err.et (revision 6a068746777241722b2b32c5d0bc443a2a64d80b)
1*ae771770SStanislav Sedov#
2*ae771770SStanislav Sedov# Error messages for the ntlm library
3*ae771770SStanislav Sedov#
4*ae771770SStanislav Sedov# This might look like a com_err file, but is not
5*ae771770SStanislav Sedov#
6*ae771770SStanislav Sedov
7*ae771770SStanislav Sedoverror_table ntlm
8*ae771770SStanislav Sedov
9*ae771770SStanislav Sedovprefix HNTLM_ERR
10*ae771770SStanislav Sedoverror_code DECODE,		"Failed to decode packet"
11*ae771770SStanislav Sedoverror_code INVALID_LENGTH,	"Input length invalid"
12*ae771770SStanislav Sedoverror_code CRYPTO,		"Failed crypto primitive"
13*ae771770SStanislav Sedoverror_code RAND,		"Random generator failed"
14*ae771770SStanislav Sedoverror_code AUTH,		"NTLM authentication failed"
15*ae771770SStanislav Sedoverror_code TIME_SKEW,		"Client time skewed to server"
16*ae771770SStanislav Sedoverror_code OEM,			"Client set OEM string"
17*ae771770SStanislav Sedoverror_code MISSING_NAME_SEPARATOR, "missing @ or \ in name"
18*ae771770SStanislav Sedoverror_code MISSING_BUFFER, 	"missing expected buffer"
19*ae771770SStanislav Sedoverror_code INVALID_APOP, 	"Invalid APOP response"
20*ae771770SStanislav Sedoverror_code INVALID_CRAM_MD5, 	"Invalid CRAM-MD5 response"
21*ae771770SStanislav Sedoverror_code INVALID_DIGEST_MD5, 	"Invalid DIGEST-MD5 response"
22*ae771770SStanislav Sedoverror_code INVALID_DIGEST_MD5_RSPAUTH, 	"Invalid DIGEST-MD5 rspauth"
23*ae771770SStanislav Sedov
24*ae771770SStanislav Sedovend
25