summaryrefslogtreecommitdiff
path: root/other/openssh-2.1.1p4/deattack.h
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/openssh-2.1.1p4/deattack.h
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/openssh-2.1.1p4/deattack.h')
-rw-r--r--other/openssh-2.1.1p4/deattack.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/other/openssh-2.1.1p4/deattack.h b/other/openssh-2.1.1p4/deattack.h
new file mode 100644
index 0000000..6ce54de
--- /dev/null
+++ b/other/openssh-2.1.1p4/deattack.h
@@ -0,0 +1,28 @@
1/*
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>
17 * <http://www.core-sdi.com>
18 */
19
20#ifndef _DEATTACK_H
21#define _DEATTACK_H
22
23/* Return codes */
24#define DEATTACK_OK 0
25#define DEATTACK_DETECTED 1
26
27int detect_attack(unsigned char *buf, u_int32_t len, unsigned char IV[8]);
28#endif