Deleted Added
full compact
deattack.h (57429) deattack.h (76259)
1/* $OpenBSD: deattack.h,v 1.5 2001/01/29 01:58:15 niklas Exp $ */
2
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.

--- 10 unchanged lines hidden (view full) ---

19
20#ifndef _DEATTACK_H
21#define _DEATTACK_H
22
23/* Return codes */
24#define DEATTACK_OK 0
25#define DEATTACK_DETECTED 1
26
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.

--- 10 unchanged lines hidden (view full) ---

21
22#ifndef _DEATTACK_H
23#define _DEATTACK_H
24
25/* Return codes */
26#define DEATTACK_OK 0
27#define DEATTACK_DETECTED 1
28
27int detect_attack(unsigned char *buf, u_int32_t len, unsigned char IV[8]);
29int detect_attack(u_char *buf, u_int32_t len, u_char IV[8]);
28#endif
30#endif