summaryrefslogtreecommitdiff
path: root/other/openssh-2.1.1p4/mpaux.h
diff options
context:
space:
mode:
Diffstat (limited to 'other/openssh-2.1.1p4/mpaux.h')
-rw-r--r--other/openssh-2.1.1p4/mpaux.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/other/openssh-2.1.1p4/mpaux.h b/other/openssh-2.1.1p4/mpaux.h
deleted file mode 100644
index b05c14b..0000000
--- a/other/openssh-2.1.1p4/mpaux.h
+++ /dev/null
@@ -1,32 +0,0 @@
1/*
2 *
3 * mpaux.h
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Sun Jul 16 04:29:30 1995 ylo
11 *
12 * This file contains various auxiliary functions related to multiple
13 * precision integers.
14 */
15
16/* RCSID("$OpenBSD: mpaux.h,v 1.7 2000/06/20 01:39:42 markus Exp $"); */
17
18#ifndef MPAUX_H
19#define MPAUX_H
20
21/*
22 * Computes a 16-byte session id in the global variable session_id. The
23 * session id is computed by concatenating the linearized, msb first
24 * representations of host_key_n, session_key_n, and the cookie.
25 */
26void
27compute_session_id(unsigned char session_id[16],
28 unsigned char cookie[8],
29 BIGNUM * host_key_n,
30 BIGNUM * session_key_n);
31
32#endif /* MPAUX_H */