1 /* $OpenBSD: mpaux.h,v 1.12 2002/03/04 17:27:39 stevesk Exp $ */ 2 3 #ifndef _MPAUX_H 4 #define _MPAUX_H 5 6 #pragma ident "%Z%%M% %I% %E% SMI" 7 8 #ifdef __cplusplus 9 extern "C" { 10 #endif 11 12 13 /* 14 * Author: Tatu Ylonen <ylo@cs.hut.fi> 15 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 16 * All rights reserved 17 * This file contains various auxiliary functions related to multiple 18 * precision integers. 19 * 20 * As far as I am concerned, the code I have written for this software 21 * can be used freely for any purpose. Any derived versions of this 22 * software must be clearly marked as such, and if the derived work is 23 * incompatible with the protocol description in the RFC file, it must be 24 * called by a name other than "ssh" or "Secure Shell". 25 */ 26 27 void compute_session_id(u_char[16], u_char[8], BIGNUM *, BIGNUM *); 28 29 #ifdef __cplusplus 30 } 31 #endif 32 33 #endif /* _MPAUX_H */ 34