[BACK]Return to deattack.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/deattack.h, Revision 1.5

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