aboutsummaryrefslogtreecommitdiff
path: root/libssh/dh.c
blob: e248433dd692b7cea03fcf0ad061e5638c4c2634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/* dh.c */
/* this file contains usefull stuff for Diffie helman algorithm against SSH 2 */
/*
Copyright 2003-2008 Aris Adamantiadis

This file is part of the SSH Library

The SSH Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The SSH Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the SSH Library; see the file COPYING.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */

/* Let us resume the dh protocol. */
/* Each side computes a private prime number, x at client side, y at server side. */
/* g and n are two numbers common to every ssh software. */
/* client's public key (e) is calculated by doing */
/* e = g^x mod p */
/* client sents e to the server . */
/* the server computes his own public key, f */
/* f = g^y mod p */
/* it sents it to the client */
/* the common key K is calculated by the client by doing */
/* k = f^x mod p */
/* the server does the same with the client public key e */
/* k' = e^y mod p */
/* if everything went correctly, k and k' are equal */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "libssh/priv.h"
#include "libssh/crypto.h"

#ifdef HAVE_LIBCRYPTO
#include <openssl/rand.h>
#include <openssl/evp.h>
#include <openssl/err.h>
#endif

static unsigned char p_value[] = {
        0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xC9, 0x0F, 0xDA, 0xA2,
        0x21, 0x68, 0xC2, 0x34, 0xC4, 0xC6, 0x62, 0x8B, 0x80, 0xDC, 0x1C, 0xD1,
        0x29, 0x02, 0x4E, 0x08, 0x8A, 0x67, 0xCC, 0x74, 0x02, 0x0B, 0xBE, 0xA6,
        0x3B, 0x13, 0x9B, 0x22, 0x51, 0x4A, 0x08, 0x79, 0x8E, 0x34, 0x04, 0xDD,
        0xEF, 0x95, 0x19, 0xB3, 0xCD, 0x3A, 0x43, 0x1B, 0x30, 0x2B, 0x0A, 0x6D,
        0xF2, 0x5F, 0x14, 0x37, 0x4F, 0xE1, 0x35, 0x6D, 0x6D, 0x51, 0xC2, 0x45,
        0xE4, 0x85, 0xB5, 0x76, 0x62, 0x5E, 0x7E, 0xC6, 0xF4, 0x4C, 0x42, 0xE9,
        0xA6, 0x37, 0xED, 0x6B, 0x0B, 0xFF, 0x5C, 0xB6, 0xF4, 0x06, 0xB7, 0xED,
        0xEE, 0x38, 0x6B, 0xFB, 0x5A, 0x89, 0x9F, 0xA5, 0xAE, 0x9F, 0x24, 0x11,
        0x7C, 0x4B, 0x1F, 0xE6, 0x49, 0x28, 0x66, 0x51, 0xEC, 0xE6, 0x53, 0x81,
        0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};
#define P_LEN 128	/* Size in bytes of the p number */

static unsigned long g_int = 2 ;	/* G is defined as 2 by the ssh2 standards */
static bignum g;
static bignum p;
static int ssh_crypto_inited=0;

int ssh_get_random(void *where, int len, int strong){
    
#ifdef HAVE_LIBGCRYPT
	// not using GCRY_VERY_STRONG_RANDOM which is a bit overkill
	gcry_randomize(where,len,GCRY_STRONG_RANDOM);
    return 1;
#elif defined HAVE_LIBCRYPTO
    if(strong){
        return RAND_bytes(where,len);
    } else {
        return RAND_pseudo_bytes(where,len);
    }
#endif
}


/* it inits the values g and p which are used for DH key agreement */
void ssh_crypto_init(){
    if(ssh_crypto_inited == 0){
#ifdef HAVE_LIBGCRYPT
        gcry_check_version(NULL);
	if (!gcry_control(GCRYCTL_INITIALIZATION_FINISHED_P,0))
	{
	  gcry_control(GCRYCTL_INIT_SECMEM, 4096);
	  gcry_control(GCRYCTL_INITIALIZATION_FINISHED,0);
	}
#endif
        g=bignum_new();
        bignum_set_word(g,g_int);
#ifdef HAVE_LIBGCRYPT
        bignum_bin2bn(p_value,P_LEN,&p);
#elif defined HAVE_LIBCRYPTO
        p=bignum_new();
        bignum_bin2bn(p_value,P_LEN,p);
        OpenSSL_add_all_algorithms();
#endif
        ssh_crypto_inited++;
    }
}

void ssh_crypto_finalize(){
    if(ssh_crypto_inited){
        bignum_free(g);
        bignum_free(p);
        ssh_crypto_inited=0;
    }
}
   
/* prints the bignum on stderr */
void ssh_print_bignum(char *which,bignum num){
#ifdef HAVE_LIBGCRYPT
    unsigned char *hex;
    bignum_bn2hex(num,&hex);
#elif defined HAVE_LIBCRYPTO
    char *hex;
    hex=bignum_bn2hex(num);
#endif
    fprintf(stderr,"%s value: ",which);
    fprintf(stderr,"%s\n",hex);
    free(hex);	
}

void ssh_print_hexa(char *descr, const unsigned char *what, int len){
    int i;
    printf("%s : ",descr);
    if(len>16)
        printf ("\n        ");
    for(i=0;i<len-1;i++){
        printf("%.2hhx:",what[i]);
        if((i+1) % 16 ==0)
            printf("\n        ");
    }
    printf("%.2hhx\n",what[i]);
}

void dh_generate_x(SSH_SESSION *session){
    session->next_crypto->x=bignum_new();
#ifdef HAVE_LIBGCRYPT
    bignum_rand(session->next_crypto->x,128);
#elif defined HAVE_LIBCRYPTO
    bignum_rand(session->next_crypto->x,128,0,-1);
#endif
	/* not harder than this */
#ifdef DEBUG_CRYPTO
	ssh_print_bignum("x",session->next_crypto->x);
#endif
}
/* used by server */
void dh_generate_y(SSH_SESSION *session){
    session->next_crypto->y=bignum_new();
#ifdef HAVE_LIBGCRYPT
    bignum_rand(session->next_crypto->y,128);
#elif defined HAVE_LIBCRYPTO
    bignum_rand(session->next_crypto->y,128,0,-1);
#endif
    /* not harder than this */
#ifdef DEBUG_CRYPTO
	ssh_print_bignum("y",session->next_crypto->y);
#endif
}
/* used by server */
void dh_generate_e(SSH_SESSION *session){
#ifdef HAVE_LIBCRYPTO
    bignum_CTX ctx=bignum_ctx_new();
#endif
    session->next_crypto->e=bignum_new();
#ifdef HAVE_LIBGCRYPT
    bignum_mod_exp(session->next_crypto->e,g,session->next_crypto->x,p);
#elif defined HAVE_LIBCRYPTO
    bignum_mod_exp(session->next_crypto->e,g,session->next_crypto->x,p,ctx);
#endif
#ifdef DEBUG_CRYPTO
    ssh_print_bignum("e",session->next_crypto->e);
#endif
#ifdef HAVE_LIBCRYPTO
    bignum_ctx_free(ctx);
#endif
}

void dh_generate_f(SSH_SESSION *session){
#ifdef HAVE_LIBCRYPTO
    bignum_CTX ctx=bignum_ctx_new();
#endif
    session->next_crypto->f=bignum_new();
#ifdef HAVE_LIBGCRYPT
    bignum_mod_exp(session->next_crypto->f,g,session->next_crypto->y,p);
#elif defined HAVE_LIBCRYPTO
    bignum_mod_exp(session->next_crypto->f,g,session->next_crypto->y,p,ctx);
#endif
#ifdef DEBUG_CRYPTO
    ssh_print_bignum("f",session->next_crypto->f);
#endif
#ifdef HAVE_LIBCRYPTO
    bignum_ctx_free(ctx);
#endif
}

STRING *make_bignum_string(bignum num){
    STRING *ptr;
    int pad=0;
    unsigned int len=bignum_num_bytes(num);
    unsigned int bits=bignum_num_bits(num);
    /* remember if the fist bit is set, it is considered as a negative number. so 0's must be appended */
    if(!(bits%8) && bignum_is_bit_set(num,bits-1))
        pad++;
    ssh_say(3,"%d bits, %d bytes, %d padding\n",bits,len,pad);
    ptr=malloc(4 + len + pad);
    ptr->size=htonl(len+pad);
    if(pad)
        ptr->string[0]=0;
#ifdef HAVE_LIBGCRYPT
    bignum_bn2bin(num,len,ptr->string+pad);
#elif HAVE_LIBCRYPTO
    bignum_bn2bin(num,ptr->string+pad);
#endif
    return ptr;
}

bignum make_string_bn(STRING *string){
	bignum bn;
	unsigned int len=string_len(string);
	ssh_say(3,"Importing a %d bits,%d bytes object ...\n",len*8,len);
#ifdef HAVE_LIBGCRYPT
        bignum_bin2bn(string->string,len,&bn);
#elif defined HAVE_LIBCRYPTO
        bn=bignum_bin2bn(string->string,len,NULL);
#endif
	return bn;
}

STRING *dh_get_e(SSH_SESSION *session){
	return make_bignum_string(session->next_crypto->e);
}

/* used by server */

STRING *dh_get_f(SSH_SESSION *session){
    return make_bignum_string(session->next_crypto->f);
}
void dh_import_pubkey(SSH_SESSION *session,STRING *pubkey_string){
    session->next_crypto->server_pubkey=pubkey_string;
}

void dh_import_f(SSH_SESSION *session,STRING *f_string){
    session->next_crypto->f=make_string_bn(f_string);
#ifdef DEBUG_CRYPTO
    ssh_print_bignum("f",session->next_crypto->f);
#endif
}

/* used by the server implementation */
void dh_import_e(SSH_SESSION *session, STRING *e_string){
    session->next_crypto->e=make_string_bn(e_string);
#ifdef DEBUG_CRYPTO
    ssh_print_bignum("e",session->next_crypto->e);
#endif
}

void dh_build_k(SSH_SESSION *session){
#ifdef HAVE_LIBCRYPTO
    bignum_CTX ctx=bignum_ctx_new();
#endif
    session->next_crypto->k=bignum_new();
    /* the server and clients don't use the same numbers */
#ifdef HAVE_LIBGCRYPT
    if(session->client){
        bignum_mod_exp(session->next_crypto->k,session->next_crypto->f,session->next_crypto->x,p);
    } else {
        bignum_mod_exp(session->next_crypto->k,session->next_crypto->e,session->next_crypto->y,p);
    }
#elif defined HAVE_LIBCRYPTO
    if(session->client){
        bignum_mod_exp(session->next_crypto->k,session->next_crypto->f,session->next_crypto->x,p,ctx);
    } else {
        bignum_mod_exp(session->next_crypto->k,session->next_crypto->e,session->next_crypto->y,p,ctx);
    }
#endif
#ifdef DEBUG_CRYPTO
    ssh_print_hexa("session server cookie",session->server_kex.cookie,16);
    ssh_print_hexa("session client cookie",session->client_kex.cookie,16);
    ssh_print_bignum("shared secret key",session->next_crypto->k);
#endif
#ifdef HAVE_LIBCRYPTO
    bignum_ctx_free(ctx);
#endif
}
/*
static void sha_add(STRING *str,SHACTX ctx){
    sha1_update(ctx,str,string_len(str)+4);
#ifdef DEBUG_CRYPTO
    ssh_print_hexa("partial hashed sessionid",str,string_len(str)+4);
#endif
}
*/
void make_sessionid(SSH_SESSION *session){
    SHACTX ctx;
    STRING *num,*str;
    BUFFER *server_hash, *client_hash;
    BUFFER *buf=buffer_new();
    u32 len;
    enter_function();
    ctx=sha1_init();

    str=string_from_char(session->clientbanner);
    buffer_add_ssh_string(buf,str);
    //sha_add(str,ctx);
    free(str);

    str=string_from_char(session->serverbanner);
    buffer_add_ssh_string(buf,str);
    //sha_add(str,ctx);
    free(str);
    if(session->client){
        server_hash=session->in_hashbuf;
        client_hash=session->out_hashbuf;
    } else{
        server_hash=session->out_hashbuf;
        client_hash=session->in_hashbuf;
    }
    buffer_add_u32(server_hash,0);
    buffer_add_u8(server_hash,0);
    buffer_add_u32(client_hash,0);
    buffer_add_u8(client_hash,0);

    len=ntohl(buffer_get_len(client_hash));
    //sha1_update(ctx,&len,4);
    buffer_add_u32(buf,len);
    buffer_add_data(buf,buffer_get(client_hash),buffer_get_len(client_hash));
    //sha1_update(ctx,buffer_get(client_hash),buffer_get_len(client_hash));
    buffer_free(client_hash);

    len=ntohl(buffer_get_len(server_hash));
    buffer_add_u32(buf,len);
    //sha1_update(ctx,&len,4);

    buffer_add_data(buf,buffer_get(server_hash),buffer_get_len(server_hash));
//    ssh_print_hexa("server_hash",buffer_get(server_hash),buffer_get_len(server_hash));
    //sha1_update(ctx,buffer_get(server_hash),buffer_get_len(server_hash));
    buffer_free(server_hash);
    
    session->in_hashbuf=NULL;
    session->out_hashbuf=NULL;
    len=string_len(session->next_crypto->server_pubkey)+4;
    buffer_add_data(buf,session->next_crypto->server_pubkey,len);
//    sha1_update(ctx,session->next_crypto->server_pubkey,len);
    num=make_bignum_string(session->next_crypto->e);
    len=string_len(num)+4;
    buffer_add_data(buf,num,len);
    //sha1_update(ctx,num,len);
    free(num);
    num=make_bignum_string(session->next_crypto->f);
    len=string_len(num)+4;
    buffer_add_data(buf,num,len);
//    sha1_update(ctx,num,len=(string_len(num)+4));
    free(num);
    num=make_bignum_string(session->next_crypto->k);
    len=string_len(num)+4;
    buffer_add_data(buf,num,len);
//    sha1_update(ctx,num,len);
    free(num);
#ifdef DEBUG_CRYPTO
    ssh_print_hexa("hash buffer",buffer_get(buf),buffer_get_len(buf));
#endif
    sha1_update(ctx,buffer_get(buf),buffer_get_len(buf));
    sha1_final(session->next_crypto->session_id,ctx);
    buffer_free(buf);
#ifdef DEBUG_CRYPTO
    printf("Session hash : ");
    ssh_print_hexa("session id",session->next_crypto->session_id,SHA_DIGEST_LEN);
#endif
    leave_function();
}

void hashbufout_add_cookie(SSH_SESSION *session){
    session->out_hashbuf=buffer_new();
    buffer_add_u8(session->out_hashbuf,20);
    if(session->server)
        buffer_add_data(session->out_hashbuf,session->server_kex.cookie,16);
    else
        buffer_add_data(session->out_hashbuf,session->client_kex.cookie,16);
}


void hashbufin_add_cookie(SSH_SESSION *session,unsigned char *cookie){
    session->in_hashbuf=buffer_new();
    buffer_add_u8(session->in_hashbuf,20);
    buffer_add_data(session->in_hashbuf,cookie,16);
}

static void generate_one_key(STRING *k,unsigned char session_id[SHA_DIGEST_LEN],unsigned char output[SHA_DIGEST_LEN],char letter){
    SHACTX ctx=sha1_init();
    sha1_update(ctx,k,string_len(k)+4);
    sha1_update(ctx,session_id,SHA_DIGEST_LEN);
    sha1_update(ctx,&letter,1);
    sha1_update(ctx,session_id,SHA_DIGEST_LEN);
    sha1_final(output,ctx);
}

void generate_session_keys(SSH_SESSION *session){
    STRING *k_string;
    SHACTX ctx;
    enter_function();
    k_string=make_bignum_string(session->next_crypto->k);

    /* IV */
    if(session->client){
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->encryptIV,'A');
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->decryptIV,'B');
    } else {
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->decryptIV,'A');
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->encryptIV,'B');
    }
    if(session->client){
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->encryptkey,'C');
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->decryptkey,'D');
    } else {
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->decryptkey,'C');
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->encryptkey,'D');
    }
    /* some ciphers need more than 20 bytes of input key */
    /* XXX verify it's ok for server implementation */
    if(session->next_crypto->out_cipher->keysize > SHA_DIGEST_LEN*8){
        ctx=sha1_init();
        sha1_update(ctx,k_string,string_len(k_string)+4);
        sha1_update(ctx,session->next_crypto->session_id,SHA_DIGEST_LEN);
        sha1_update(ctx,session->next_crypto->encryptkey,SHA_DIGEST_LEN);
        sha1_final(session->next_crypto->encryptkey+SHA_DIGEST_LEN,ctx);
    }

    if(session->next_crypto->in_cipher->keysize > SHA_DIGEST_LEN*8){
        ctx=sha1_init();
        sha1_update(ctx,k_string,string_len(k_string)+4);
        sha1_update(ctx,session->next_crypto->session_id,SHA_DIGEST_LEN);
        sha1_update(ctx,session->next_crypto->decryptkey,SHA_DIGEST_LEN);
        sha1_final(session->next_crypto->decryptkey+SHA_DIGEST_LEN,ctx);
    }
    if(session->client){
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->encryptMAC,'E');
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->decryptMAC,'F');
    } else {
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->decryptMAC,'E');
        generate_one_key(k_string,session->next_crypto->session_id,session->next_crypto->encryptMAC,'F');
    }

#ifdef DEBUG_CRYPTO
    ssh_print_hexa("encrypt IV",session->next_crypto->encryptIV,SHA_DIGEST_LEN);
    ssh_print_hexa("decrypt IV",session->next_crypto->decryptIV,SHA_DIGEST_LEN);
    ssh_print_hexa("encryption key",session->next_crypto->encryptkey,session->next_crypto->out_cipher->keysize);
    ssh_print_hexa("decryption key",session->next_crypto->decryptkey,session->next_crypto->in_cipher->keysize);
    ssh_print_hexa("Encryption MAC",session->next_crypto->encryptMAC,SHA_DIGEST_LEN);
    ssh_print_hexa("Decryption MAC",session->next_crypto->decryptMAC,20);
#endif
    free(k_string);
    leave_function();
}

/** \addtogroup ssh_session
 * @{ */
/** \brief get the md5 hash of the server public key
 * \param session ssh session
 * \param hash destination for the md5 hash
 * \return size of the hash in bytes
 * \warning it is very important that you verify at some moment that the hash matches
 * a known server. If you don't do it, cryptography won't help you at making things secure
 * \see ssh_is_server_known()
 */
int ssh_get_pubkey_hash(SSH_SESSION *session,unsigned char hash[MD5_DIGEST_LEN]){
    STRING *pubkey=session->current_crypto->server_pubkey;
    MD5CTX ctx;
    int len=string_len(pubkey);

    ctx=md5_init();
    md5_update(ctx,pubkey->string,len);
    md5_final(hash,ctx);
    return MD5_DIGEST_LEN;
}

/** \deprecated same as ssh_get_pubkey_hash()
 */
int pubkey_get_hash(SSH_SESSION *session, unsigned char hash[MD5_DIGEST_LEN]){
    return ssh_get_pubkey_hash(session,hash);
}

STRING *ssh_get_pubkey(SSH_SESSION *session){
    return string_copy(session->current_crypto->server_pubkey);
}

/* XXX i doubt it is still needed, or may need some fix */
static int match(char *group,char *object){
    char *ptr,*saved;
    char *end;
    ptr=strdup(group);
    saved=ptr;
    while(1){
        end=strchr(ptr,',');
        if(end)
            *end=0;
        if(!strcmp(ptr,object)){
            free(saved);
            return 0;
        }
        if(end)
            ptr=end+1;
        else{
            free(saved);
            return -1;
        }
    }
    /* not reached */
    return 1;
}

static int sig_verify(SSH_SESSION *session, PUBLIC_KEY *pubkey, SIGNATURE *signature, 
        unsigned char *digest){
#ifdef HAVE_LIBGCRYPT
    gcry_error_t valid=0;
    gcry_sexp_t gcryhash;
#elif defined HAVE_LIBCRYPTO
    int valid=0;
#endif
    unsigned char hash[SHA_DIGEST_LEN+1];
    sha1(digest,SHA_DIGEST_LEN,hash+1);
    hash[0]=0;
#ifdef DEBUG_CRYPTO
    ssh_print_hexa("hash to be verified with dsa",hash+1,SHA_DIGEST_LEN);
#endif
    switch(pubkey->type){
        case TYPE_DSS:
#ifdef HAVE_LIBGCRYPT
            gcry_sexp_build(&gcryhash, NULL, "%b", SHA_DIGEST_LEN+1, hash);
            valid=gcry_pk_verify(signature->dsa_sign,gcryhash,pubkey->dsa_pub);
            gcry_sexp_release(gcryhash);
            if(valid==0)
              return 0;
            if (gcry_err_code(valid)!=GPG_ERR_BAD_SIGNATURE){
              ssh_set_error(session,SSH_FATAL,"DSA error : %s", gcry_strerror(valid));
#elif defined HAVE_LIBCRYPTO
            valid=DSA_do_verify(hash+1,SHA_DIGEST_LEN,signature->dsa_sign,
                pubkey->dsa_pub);
            if(valid==1)
                return 0;
            if(valid==-1){
                ssh_set_error(session,SSH_FATAL,"DSA error : %s",ERR_error_string(ERR_get_error(),NULL));
#endif
                return -1;
            }
            ssh_set_error(session,SSH_FATAL,"Invalid DSA signature");
            return -1;
        case TYPE_RSA:
        case TYPE_RSA1:
#ifdef HAVE_LIBGCRYPT
            gcry_sexp_build(&gcryhash,NULL,"(data(flags pkcs1)(hash sha1 %b))",SHA_DIGEST_LEN,hash+1);
            valid=gcry_pk_verify(signature->rsa_sign,gcryhash,pubkey->rsa_pub);
            gcry_sexp_release(gcryhash);
            if(valid==0)
              return 0;
            if(gcry_err_code(valid)!=GPG_ERR_BAD_SIGNATURE){
                ssh_set_error(session,SSH_FATAL,"RSA error : %s",gcry_strerror(valid));
#elif defined HAVE_LIBCRYPTO
            valid=RSA_verify(NID_sha1,hash+1,SHA_DIGEST_LEN,
            signature->rsa_sign->string,string_len(signature->rsa_sign),pubkey->rsa_pub);
            if(valid==1)
                return 0;
            if(valid==-1){
                ssh_set_error(session,SSH_FATAL,"RSA error : %s",ERR_error_string(ERR_get_error(),NULL));
#endif
                return -1;
            }
            ssh_set_error(session,SSH_FATAL,"Invalid RSA signature");
            return -1;
       default:
            ssh_set_error(session,SSH_FATAL,"Unknown public key type");
            return -1;
   }
return -1;
}

int signature_verify(SSH_SESSION *session,STRING *signature){
    PUBLIC_KEY *pubkey;
    SIGNATURE *sign;
    int err;
    enter_function();
    if(session->options->dont_verify_hostkey){
        ssh_say(1,"Host key wasn't verified\n");
        leave_function();
        return 0;
    }
    pubkey=publickey_from_string(session,session->next_crypto->server_pubkey);
    if(!pubkey){
    	leave_function();
    	return -1;
    }

    if(session->options->wanted_methods[SSH_HOSTKEYS]){
         if(match(session->options->wanted_methods[SSH_HOSTKEYS],pubkey->type_c)){
             ssh_set_error(session,SSH_FATAL,"Public key from server (%s) doesn't match user preference (%s)",
             pubkey->type_c,session->options->wanted_methods[SSH_HOSTKEYS]);
             publickey_free(pubkey);
             leave_function();
             return -1;
         }
    }
    sign=signature_from_string(session, signature,pubkey,pubkey->type);
    if(!sign){
        ssh_set_error(session,SSH_FATAL,"Invalid signature blob");
        publickey_free(pubkey);
        leave_function();
        return -1;
    }
    ssh_say(1,"Going to verify a %s type signature\n",pubkey->type_c);
    err=sig_verify(session,pubkey,sign,session->next_crypto->session_id);
    signature_free(sign);
    session->next_crypto->server_pubkey_type=pubkey->type_c;
    publickey_free(pubkey);
    leave_function();
    return err;
}

/** @} */