freebsd_amp_hwpstate/crypto/openssh/mpaux.c

47 lines
1.1 KiB
C
Raw Normal View History

2000-02-24 14:29:47 +00:00
/*
2000-05-15 04:37:24 +00:00
*
2000-02-24 14:29:47 +00:00
* mpaux.c
2000-05-15 04:37:24 +00:00
*
2000-02-24 14:29:47 +00:00
* Author: Tatu Ylonen <ylo@cs.hut.fi>
2000-05-15 04:37:24 +00:00
*
2000-02-24 14:29:47 +00:00
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
2000-05-15 04:37:24 +00:00
*
2000-02-24 14:29:47 +00:00
* Created: Sun Jul 16 04:29:30 1995 ylo
2000-05-15 04:37:24 +00:00
*
2000-02-24 14:29:47 +00:00
* This file contains various auxiliary functions related to multiple
* precision integers.
2000-05-15 04:37:24 +00:00
*
2000-02-24 14:29:47 +00:00
*/
#include "includes.h"
2000-05-15 04:37:24 +00:00
RCSID("$Id: mpaux.c,v 1.12 2000/04/14 10:30:32 markus Exp $");
2000-02-24 14:29:47 +00:00
2000-05-15 04:37:24 +00:00
#include <openssl/bn.h>
2000-02-24 14:29:47 +00:00
#include "getput.h"
#include "xmalloc.h"
2000-05-15 04:37:24 +00:00
#include <openssl/md5.h>
2000-02-24 14:29:47 +00:00
void
compute_session_id(unsigned char session_id[16],
2000-05-15 04:37:24 +00:00
unsigned char cookie[8],
BIGNUM* host_key_n,
BIGNUM* session_key_n)
2000-02-24 14:29:47 +00:00
{
unsigned int host_key_bytes = BN_num_bytes(host_key_n);
unsigned int session_key_bytes = BN_num_bytes(session_key_n);
unsigned int bytes = host_key_bytes + session_key_bytes;
unsigned char *buf = xmalloc(bytes);
MD5_CTX md;
BN_bn2bin(host_key_n, buf);
BN_bn2bin(session_key_n, buf + host_key_bytes);
MD5_Init(&md);
MD5_Update(&md, buf, bytes);
MD5_Update(&md, cookie, 8);
MD5_Final(session_id, &md);
memset(buf, 0, bytes);
xfree(buf);
}