blob: 0773ed2c43a77ff7c428e7647716be6d40355685 (
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
|
/*
* PKCS #1 v1.5 signature padding
* (C) 1999-2008 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_EMSA_PKCS1_H__
#define BOTAN_EMSA_PKCS1_H__
#include <botan/emsa.h>
#include <botan/hash.h>
namespace Botan {
/**
* PKCS #1 v1.5 signature padding
* aka PKCS #1 block type 1
* aka EMSA3 from IEEE 1363
*/
class BOTAN_DLL EMSA_PKCS1v15 final : public EMSA
{
public:
static EMSA* make(const EMSA::Spec& spec);
/**
* @param hash the hash object to use
*/
explicit EMSA_PKCS1v15(HashFunction* hash);
EMSA* clone() override { return new EMSA_PKCS1v15(m_hash->clone()); }
void update(const byte[], size_t) override;
secure_vector<byte> raw_data() override;
secure_vector<byte> encoding_of(const secure_vector<byte>&, size_t,
RandomNumberGenerator& rng) override;
bool verify(const secure_vector<byte>&, const secure_vector<byte>&,
size_t) override;
private:
std::unique_ptr<HashFunction> m_hash;
std::vector<byte> m_hash_id;
};
/**
* EMSA_PKCS1v15_Raw which is EMSA_PKCS1v15 without a hash or digest id
* (which according to QCA docs is "identical to PKCS#11's CKM_RSA_PKCS
* mechanism", something I have not confirmed)
*/
class BOTAN_DLL EMSA_PKCS1v15_Raw final : public EMSA
{
public:
EMSA* clone() override { return new EMSA_PKCS1v15_Raw(); }
void update(const byte[], size_t) override;
secure_vector<byte> raw_data() override;
secure_vector<byte> encoding_of(const secure_vector<byte>&, size_t,
RandomNumberGenerator& rng) override;
bool verify(const secure_vector<byte>&, const secure_vector<byte>&,
size_t) override;
private:
secure_vector<byte> m_message;
};
}
#endif
|