blob: 2a312f5cb2122ebe02dbf5a1d8cbfd8851f20883 [file] [log] [blame]
Ben Lindstrom05764b92002-03-05 01:53:02 +00001/* $OpenBSD: mpaux.h,v 1.12 2002/03/04 17:27:39 stevesk Exp $ */
2
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11005 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller95def091999-11-25 00:26:21 +11007 * This file contains various auxiliary functions related to multiple
8 * precision integers.
Damien Millere4340be2000-09-16 13:29:08 +11009 *
10 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110015 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100016
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017#ifndef MPAUX_H
18#define MPAUX_H
19
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000020void compute_session_id(u_char[16], u_char[8], BIGNUM *, BIGNUM *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100021
Damien Miller95def091999-11-25 00:26:21 +110022#endif /* MPAUX_H */