Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 1 | /* |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 2 | * Cryptographic attack detector for ssh - Header file |
| 3 | * |
| 4 | * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina. |
| 5 | * |
| 6 | * All rights reserved. Redistribution and use in source and binary |
| 7 | * forms, with or without modification, are permitted provided that |
| 8 | * this copyright notice is retained. |
| 9 | * |
| 10 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 11 | * WARRANTIES ARE DISCLAIMED. IN NO EVENT SHALL CORE SDI S.A. BE |
| 12 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY OR |
| 13 | * CONSEQUENTIAL DAMAGES RESULTING FROM THE USE OR MISUSE OF THIS |
| 14 | * SOFTWARE. |
| 15 | * |
| 16 | * Ariel Futoransky <futo@core-sdi.com> |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 17 | * <http://www.core-sdi.com> |
| 18 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 19 | |
| 20 | #ifndef _DEATTACK_H |
| 21 | #define _DEATTACK_H |
| 22 | |
| 23 | /* Return codes */ |
| 24 | #define DEATTACK_OK 0 |
| 25 | #define DEATTACK_DETECTED 1 |
| 26 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 27 | int detect_attack(unsigned char *buf, u_int32_t len, unsigned char IV[8]); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 28 | #endif |