Coverage Report

Created: 2020-03-26 13:53

/src/botan/src/lib/pk_pad/emsa_pkcs1/emsa_pkcs1.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
* PKCS #1 v1.5 signature padding
3
* (C) 1999-2008 Jack Lloyd
4
*
5
* Botan is released under the Simplified BSD License (see license.txt)
6
*/
7
8
#include <botan/emsa_pkcs1.h>
9
#include <botan/hash_id.h>
10
#include <botan/exceptn.h>
11
#include <botan/pk_keys.h>
12
#include <botan/internal/padding.h>
13
14
namespace Botan {
15
16
namespace {
17
18
secure_vector<uint8_t> emsa3_encoding(const secure_vector<uint8_t>& msg,
19
                                   size_t output_bits,
20
                                   const uint8_t hash_id[],
21
                                   size_t hash_id_length)
22
5.97k
   {
23
5.97k
   size_t output_length = output_bits / 8;
24
5.97k
   if(output_length < hash_id_length + msg.size() + 10)
25
150
      throw Encoding_Error("emsa3_encoding: Output length is too small");
26
5.82k
27
5.82k
   secure_vector<uint8_t> T(output_length);
28
5.82k
   const size_t P_LENGTH = output_length - msg.size() - hash_id_length - 2;
29
5.82k
30
5.82k
   T[0] = 0x01;
31
5.82k
   set_mem(&T[1], P_LENGTH, 0xFF);
32
5.82k
   T[P_LENGTH+1] = 0x00;
33
5.82k
34
5.82k
   if(hash_id_length > 0)
35
5.82k
      {
36
5.82k
      BOTAN_ASSERT_NONNULL(hash_id);
37
5.82k
      buffer_insert(T, P_LENGTH+2, hash_id, hash_id_length);
38
5.82k
      }
39
5.82k
40
5.82k
   buffer_insert(T, output_length-msg.size(), msg.data(), msg.size());
41
5.82k
   return T;
42
5.82k
   }
43
44
}
45
46
void EMSA_PKCS1v15::update(const uint8_t input[], size_t length)
47
6.06k
   {
48
6.06k
   m_hash->update(input, length);
49
6.06k
   }
50
51
secure_vector<uint8_t> EMSA_PKCS1v15::raw_data()
52
6.06k
   {
53
6.06k
   return m_hash->final();
54
6.06k
   }
55
56
secure_vector<uint8_t>
57
EMSA_PKCS1v15::encoding_of(const secure_vector<uint8_t>& msg,
58
                           size_t output_bits,
59
                           RandomNumberGenerator&)
60
0
   {
61
0
   if(msg.size() != m_hash->output_length())
62
0
      throw Encoding_Error("EMSA_PKCS1v15::encoding_of: Bad input length");
63
0
64
0
   return emsa3_encoding(msg, output_bits,
65
0
                         m_hash_id.data(), m_hash_id.size());
66
0
   }
67
68
bool EMSA_PKCS1v15::verify(const secure_vector<uint8_t>& coded,
69
                           const secure_vector<uint8_t>& raw,
70
                           size_t key_bits)
71
5.97k
   {
72
5.97k
   if(raw.size() != m_hash->output_length())
73
0
      return false;
74
5.97k
75
5.97k
   try
76
5.97k
      {
77
5.97k
      return (coded == emsa3_encoding(raw, key_bits,
78
5.97k
                                      m_hash_id.data(), m_hash_id.size()));
79
5.97k
      }
80
150
   catch(...)
81
150
      {
82
150
      return false;
83
150
      }
84
5.97k
   }
85
86
AlgorithmIdentifier EMSA_PKCS1v15::config_for_x509(const Private_Key& key,
87
                                    const std::string& cert_hash_name) const
88
0
   {
89
0
   if(cert_hash_name != m_hash->name())
90
0
      throw Invalid_Argument("Hash function from opts and hash_fn argument"
91
0
         " need to be identical");
92
0
   // check that the signature algorithm and the padding scheme fit
93
0
   if(!sig_algo_and_pad_ok(key.algo_name(), "EMSA3"))
94
0
      {
95
0
      throw Invalid_Argument("Encoding scheme with canonical name EMSA3"
96
0
         " not supported for signature algorithm " + key.algo_name());
97
0
      }
98
0
99
0
   // for RSA PKCSv1.5 parameters "SHALL" be NULL
100
0
101
0
   const OID oid = OID::from_string(key.algo_name() + "/" + name());
102
0
   return AlgorithmIdentifier(oid, AlgorithmIdentifier::USE_NULL_PARAM);
103
0
   }
104
105
EMSA_PKCS1v15::EMSA_PKCS1v15(HashFunction* hash) : m_hash(hash)
106
6.06k
   {
107
6.06k
   m_hash_id = pkcs_hash_id(m_hash->name());
108
6.06k
   }
109
110
EMSA_PKCS1v15_Raw::EMSA_PKCS1v15_Raw(const std::string& hash_algo)
111
0
   {
112
0
   if(!hash_algo.empty())
113
0
      {
114
0
      m_hash_id = pkcs_hash_id(hash_algo);
115
0
      std::unique_ptr<HashFunction> hash(HashFunction::create_or_throw(hash_algo));
116
0
      m_hash_name = hash->name();
117
0
      m_hash_output_len = hash->output_length();
118
0
      }
119
0
   else
120
0
      {
121
0
      m_hash_output_len = 0;
122
0
      }
123
0
   }
124
125
void EMSA_PKCS1v15_Raw::update(const uint8_t input[], size_t length)
126
0
   {
127
0
   m_message += std::make_pair(input, length);
128
0
   }
129
130
secure_vector<uint8_t> EMSA_PKCS1v15_Raw::raw_data()
131
0
   {
132
0
   secure_vector<uint8_t> ret;
133
0
   std::swap(ret, m_message);
134
0
135
0
   if(m_hash_output_len > 0 && ret.size() != m_hash_output_len)
136
0
      throw Encoding_Error("EMSA_PKCS1v15_Raw::encoding_of: Bad input length");
137
0
138
0
   return ret;
139
0
   }
140
141
secure_vector<uint8_t>
142
EMSA_PKCS1v15_Raw::encoding_of(const secure_vector<uint8_t>& msg,
143
                               size_t output_bits,
144
                               RandomNumberGenerator&)
145
0
   {
146
0
   return emsa3_encoding(msg, output_bits, m_hash_id.data(), m_hash_id.size());
147
0
   }
148
149
bool EMSA_PKCS1v15_Raw::verify(const secure_vector<uint8_t>& coded,
150
                               const secure_vector<uint8_t>& raw,
151
                               size_t key_bits)
152
0
   {
153
0
   if(m_hash_output_len > 0 && raw.size() != m_hash_output_len)
154
0
      return false;
155
0
156
0
   try
157
0
      {
158
0
      return (coded == emsa3_encoding(raw, key_bits, m_hash_id.data(), m_hash_id.size()));
159
0
      }
160
0
   catch(...)
161
0
      {
162
0
      return false;
163
0
      }
164
0
   }
165
166
}