~ubuntu-branches/ubuntu/saucy/nettle/saucy-proposed

« back to all changes in this revision

Viewing changes to rsa-decrypt.c

  • Committer: Bazaar Package Importer
  • Author(s): Marek Habersack
  • Date: 2004-05-04 15:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20040504155602-7jbhw5mabvwksl3j
Tags: upstream-1.10
Import upstream version 1.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* rsa_decrypt.c
 
2
 *
 
3
 * The RSA publickey algorithm. PKCS#1 encryption.
 
4
 */
 
5
 
 
6
/* nettle, low-level cryptographics library
 
7
 *
 
8
 * Copyright (C) 2001 Niels M�ller
 
9
 *  
 
10
 * The nettle library is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU Lesser General Public License as published by
 
12
 * the Free Software Foundation; either version 2.1 of the License, or (at your
 
13
 * option) any later version.
 
14
 * 
 
15
 * The nettle library is distributed in the hope that it will be useful, but
 
16
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
17
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 
18
 * License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU Lesser General Public License
 
21
 * along with the nettle library; see the file COPYING.LIB.  If not, write to
 
22
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 
23
 * MA 02111-1307, USA.
 
24
 */
 
25
 
 
26
#if HAVE_CONFIG_H
 
27
# include "config.h"
 
28
#endif
 
29
 
 
30
#if WITH_PUBLIC_KEY
 
31
 
 
32
#include <assert.h>
 
33
#include <stdlib.h>
 
34
#include <string.h>
 
35
 
 
36
#include "rsa.h"
 
37
 
 
38
#include "bignum.h"
 
39
#include "nettle-internal.h"
 
40
 
 
41
int
 
42
rsa_decrypt(const struct rsa_private_key *key,
 
43
            unsigned *length, uint8_t *message,
 
44
            const mpz_t gibberish)
 
45
{
 
46
  TMP_DECL(em, uint8_t, NETTLE_MAX_BIGNUM_BITS / 8);
 
47
  uint8_t *terminator;
 
48
  unsigned padding;
 
49
  unsigned message_length;
 
50
  
 
51
  mpz_t m;
 
52
 
 
53
  mpz_init(m);
 
54
  rsa_compute_root(key, m, gibberish);
 
55
 
 
56
  TMP_ALLOC(em, key->size);
 
57
  nettle_mpz_get_str_256(key->size, em, m);
 
58
  mpz_clear(m);
 
59
 
 
60
  /* Check format */
 
61
  if (em[0] || em[1] != 2)
 
62
    return 0;
 
63
 
 
64
  terminator = memchr(em + 2, 0, key->size - 2);
 
65
 
 
66
  if (!terminator)
 
67
    return 0;
 
68
  
 
69
  padding = terminator - (em + 2);
 
70
  if (padding < 8)
 
71
    return 0;
 
72
 
 
73
  message_length = key->size - 3 - padding;
 
74
 
 
75
  if (*length < message_length)
 
76
    return 0;
 
77
  
 
78
  memcpy(message, terminator + 1, message_length);
 
79
  *length = message_length;
 
80
 
 
81
  return 1;
 
82
}
 
83
 
 
84
#endif /* WITH_PUBLIC_KEY */