- djm@cvs.openbsd.org 2006/07/10 11:25:53
[openssh-git.git] / deattack.h
blob6275981040c3be3ca7267addec7fa6fbc4974acd
1 /* $OpenBSD: deattack.h,v 1.9 2006/03/25 22:22:43 djm Exp $ */
3 /*
4 * Cryptographic attack detector for ssh - Header file
6 * Copyright (c) 1998 CORE SDI S.A., Buenos Aires, Argentina.
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.
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.
18 * Ariel Futoransky <futo@core-sdi.com>
19 * <http://www.core-sdi.com>
22 #ifndef _DEATTACK_H
23 #define _DEATTACK_H
25 /* Return codes */
26 #define DEATTACK_OK 0
27 #define DEATTACK_DETECTED 1
29 int detect_attack(u_char *, u_int32_t);
30 #endif