 e0bb9c10ca
			
		
	
	e0bb9c10ca
	
	
	
		
			
			Implement the GSS-API credential store API extensions defined by MIT here: https://k5wiki.kerberos.org/wiki/Projects/Credential_Store_extensions Note: we kill off gss_acquire_cred_ext() here. This was never a public API, although mechanisms could have implemented it and I briefly used it in my BrowserID prototype mechanism. gss_acquire_cred_ext_from() occupies the place in the dispatch table where gss_acquire_cred_ext() used to, but this structure was never visible outside Heimdal (i.e. it is only used by internal mechanisms); (Mechanisms that need to accept arbitrary key/value dictionaries from applications should now implement gss_acquire_cred_from().)
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # extended gss krb5 error messages
 | |
| #
 | |
| 
 | |
| id "$Id$"
 | |
| 
 | |
| error_table gk5
 | |
| 
 | |
| prefix GSS_KRB5_S
 | |
| 
 | |
| error_code G_BAD_SERVICE_NAME, "No @ in SERVICE-NAME name string"
 | |
| error_code G_BAD_STRING_UID, "STRING-UID-NAME contains nondigits"
 | |
| error_code G_NOUSER, "UID does not resolve to username"
 | |
| error_code G_VALIDATE_FAILED, "Validation error"
 | |
| error_code G_BUFFER_ALLOC, "Couldn't allocate gss_buffer_t data"
 | |
| error_code G_BAD_MSG_CTX, "Message context invalid"
 | |
| error_code G_WRONG_SIZE, "Buffer is the wrong size"
 | |
| error_code G_BAD_USAGE, "Credential usage type is unknown"
 | |
| error_code G_UNKNOWN_QOP, "Unknown quality of protection specified"
 | |
| error_code G_UNKNOWN_CRED_STORE_ELEMENT, "Credential store contained unknown elements"
 | |
| error_code G_BAD_PASSWORD_CRED_STORE, "Credential store cannot contain both a password and a credentials cache or client keytab"
 | |
| 
 | |
| index 128
 | |
| 
 | |
| error_code KG_CCACHE_NOMATCH, "Principal in credential cache does not match desired name"
 | |
| error_code KG_KEYTAB_NOMATCH, "No principal in keytab matches desired name"
 | |
| error_code KG_TGT_MISSING, "Credential cache has no TGT"
 | |
| error_code KG_NO_SUBKEY, "Authenticator has no subkey"
 | |
| error_code KG_CONTEXT_ESTABLISHED, "Context is already fully established"
 | |
| error_code KG_BAD_SIGN_TYPE, "Unknown signature type in token"
 | |
| error_code KG_BAD_LENGTH, "Invalid field length in token"
 | |
| error_code KG_CTX_INCOMPLETE, "Attempt to use incomplete security context"
 | |
| error_code KG_INPUT_TOO_LONG, "Input too long"
 |