mirror of
				https://github.com/PowerShell/Win32-OpenSSH.git
				synced 2025-10-31 11:44:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			802 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			802 B
		
	
	
	
		
			C
		
	
	
	
	
	
| typedef unsigned char u_int8_t;
 | |
| typedef unsigned short u_int16_t;
 | |
| typedef unsigned int u_int32_t;
 | |
| typedef unsigned __int64 u_int64_t;
 | |
| #define __attribute__(a)
 | |
| #include "rsa.h"
 | |
| #include "sshbuf.h"
 | |
| #include "sshkey.h"
 | |
| #include "authfd.h"
 | |
| #include "digest.h"
 | |
| 
 | |
| 
 | |
| /* key management */
 | |
| int process_add_identity(struct sshbuf*, struct sshbuf*, struct agent_connection*);
 | |
| int process_request_identities(struct sshbuf*, struct sshbuf*, struct agent_connection*);
 | |
| int process_sign_request(struct sshbuf*, struct sshbuf*, struct agent_connection*);
 | |
| int process_remove_key(struct sshbuf*, struct sshbuf*, struct agent_connection*);
 | |
| int process_remove_all(struct sshbuf*, struct sshbuf*, struct agent_connection*);
 | |
| int process_authagent_request(struct sshbuf*, struct sshbuf*, struct agent_connection*);
 | |
| 
 | |
| /* auth */
 |