blob: b05c14bf75ef5eac636e4380db327cc28f65294d [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller4af51302000-04-16 11:18:38 +10002 *
Damien Miller95def091999-11-25 00:26:21 +11003 * mpaux.h
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Miller95def091999-11-25 00:26:21 +11005 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10006 *
Damien Miller95def091999-11-25 00:26:21 +11007 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Miller95def091999-11-25 00:26:21 +110010 * Created: Sun Jul 16 04:29:30 1995 ylo
Damien Miller4af51302000-04-16 11:18:38 +100011 *
Damien Miller95def091999-11-25 00:26:21 +110012 * This file contains various auxiliary functions related to multiple
13 * precision integers.
14 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015
Damien Miller6536c7d2000-06-22 21:32:31 +100016/* RCSID("$OpenBSD: mpaux.h,v 1.7 2000/06/20 01:39:42 markus Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100017
18#ifndef MPAUX_H
19#define MPAUX_H
20
Damien Miller5428f641999-11-25 11:54:57 +110021/*
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 */
Damien Miller4af51302000-04-16 11:18:38 +100026void
Damien Miller95def091999-11-25 00:26:21 +110027compute_session_id(unsigned char session_id[16],
28 unsigned char cookie[8],
29 BIGNUM * host_key_n,
30 BIGNUM * session_key_n);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
Damien Miller95def091999-11-25 00:26:21 +110032#endif /* MPAUX_H */