diff options
| author | SkyperTHC | 2026-03-03 06:28:55 +0000 |
|---|---|---|
| committer | SkyperTHC | 2026-03-03 06:28:55 +0000 |
| commit | 5d3573ef7a109ee70416fe94db098fe6a769a798 (patch) | |
| tree | dc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/ssharp/deattack.h | |
| parent | c6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff) | |
packetstorm sync
Diffstat (limited to 'other/ssharp/deattack.h')
| -rw-r--r-- | other/ssharp/deattack.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/other/ssharp/deattack.h b/other/ssharp/deattack.h new file mode 100644 index 0000000..3907159 --- /dev/null +++ b/other/ssharp/deattack.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* $OpenBSD: deattack.h,v 1.5 2001/01/29 01:58:15 niklas Exp $ */ | ||
| 2 | |||
| 3 | /* | ||
| 4 | * Cryptographic attack detector for ssh - Header file | ||
| 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> | ||
| 19 | * <http://www.core-sdi.com> | ||
| 20 | */ | ||
| 21 | |||
| 22 | #ifndef _DEATTACK_H | ||
| 23 | #define _DEATTACK_H | ||
| 24 | |||
| 25 | /* Return codes */ | ||
| 26 | #define DEATTACK_OK 0 | ||
| 27 | #define DEATTACK_DETECTED 1 | ||
| 28 | |||
| 29 | int detect_attack(u_char *buf, u_int32_t len, u_char IV[8]); | ||
| 30 | #endif | ||
