summaryrefslogtreecommitdiff
path: root/src/protocol/internal/ssh_error.h
blob: 97d814dd747a7fe83f94019812095e7ce6ba5be1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SSH_ERROR_H
#define SSH_ERROR_H

enum {
	ESECRET = 1, /* error comupting DH secret */
	ERSA, /* RSA error */
	ECRYPT, /* encrypt/decrypt error */
	ETOOSMALL, /* buffer too small */
	ETOOBIG, /* buffer too big */
	ECRC32, /* CRC32 error */
	EMAC, /* MAC error */
};

#endif