Coverage Report

Created: 2020-11-21 08:34

/src/botan/src/lib/pk_pad/eme_pkcs1/eme_pkcs.cpp
Line
Count
Source
1
/*
2
* PKCS #1 v1.5 Type 2 (encryption) padding
3
* (C) 1999-2007,2015,2016 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#include <botan/internal/eme_pkcs.h>
9
#include <botan/exceptn.h>
10
#include <botan/rng.h>
11
#include <botan/internal/ct_utils.h>
12
13
namespace Botan {
14
15
/*
16
* PKCS1 Pad Operation
17
*/
18
secure_vector<uint8_t> EME_PKCS1v15::pad(const uint8_t in[], size_t inlen,
19
                                     size_t key_length,
20
                                     RandomNumberGenerator& rng) const
21
64
   {
22
64
   key_length /= 8;
23
24
64
   if(inlen > maximum_input_size(key_length * 8))
25
4
      {
26
4
      throw Invalid_Argument("PKCS1: Input is too large");
27
4
      }
28
29
60
   secure_vector<uint8_t> out(key_length);
30
31
60
   out[0] = 0x02;
32
60
   rng.randomize(out.data() + 1, (key_length - inlen - 2));
33
34
4.71k
   for(size_t j = 1; j != key_length - inlen - 1; ++j)
35
4.65k
      {
36
4.65k
      if(out[j] == 0)
37
13
         {
38
13
         out[j] = rng.next_nonzero_byte();
39
13
         }
40
4.65k
      }
41
42
60
   buffer_insert(out, key_length - inlen, in, inlen);
43
44
60
   return out;
45
60
   }
46
47
/*
48
* PKCS1 Unpad Operation
49
*/
50
secure_vector<uint8_t> EME_PKCS1v15::unpad(uint8_t& valid_mask,
51
                                        const uint8_t in[], size_t inlen) const
52
218
   {
53
   /*
54
   * RSA decryption pads the ciphertext up to the modulus size, so this only
55
   * occurs with very (!) small keys, or when fuzzing.
56
   *
57
   * 11 bytes == 00,02 + 8 bytes mandatory padding + 00
58
   */
59
218
   if(inlen < 11)
60
36
      {
61
36
      valid_mask = false;
62
36
      return secure_vector<uint8_t>();
63
36
      }
64
65
182
   CT::poison(in, inlen);
66
67
182
   CT::Mask<uint8_t> bad_input_m = CT::Mask<uint8_t>::cleared();
68
182
   CT::Mask<uint8_t> seen_zero_m = CT::Mask<uint8_t>::cleared();
69
182
   size_t delim_idx = 2; // initial 0002
70
71
182
   bad_input_m |= ~CT::Mask<uint8_t>::is_equal(in[0], 0);
72
182
   bad_input_m |= ~CT::Mask<uint8_t>::is_equal(in[1], 2);
73
74
223k
   for(size_t i = 2; i < inlen; ++i)
75
222k
      {
76
222k
      const auto is_zero_m = CT::Mask<uint8_t>::is_zero(in[i]);
77
222k
      delim_idx += seen_zero_m.if_not_set_return(1);
78
222k
      seen_zero_m |= is_zero_m;
79
222k
      }
80
81
   // no zero delim -> bad padding
82
182
   bad_input_m |= ~seen_zero_m;
83
   /*
84
   delim indicates < 8 bytes padding -> bad padding
85
86
   We require 11 here because we are counting also the 00 delim byte
87
   */
88
182
   bad_input_m |= CT::Mask<uint8_t>(CT::Mask<size_t>::is_lt(delim_idx, 11));
89
90
182
   valid_mask = (~bad_input_m).unpoisoned_value();
91
182
   const secure_vector<uint8_t> output = CT::copy_output(bad_input_m, in, inlen, delim_idx);
92
93
182
   CT::unpoison(in, inlen);
94
95
182
   return output;
96
182
   }
97
98
/*
99
* Return the max input size for a given key size
100
*/
101
size_t EME_PKCS1v15::maximum_input_size(size_t keybits) const
102
64
   {
103
64
   if(keybits / 8 > 10)
104
60
      return ((keybits / 8) - 10);
105
4
   else
106
4
      return 0;
107
64
   }
108
109
}