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
|
/**
* (C) Copyright Projet SECRET, INRIA, Rocquencourt
* (C) Bhaskar Biswas and Nicolas Sendrier
*
* (C) 2014 cryptosource GmbH
* (C) 2014 Falko Strenzke fstrenzke@cryptosource.de
*
* Botan is released under the Simplified BSD License (see license.txt)
*
*/
#ifndef BOTAN_MCELIECE_INTERNAL_H__
#define BOTAN_MCELIECE_INTERNAL_H__
#include <botan/secmem.h>
#include <botan/types.h>
#include <botan/pk_ops.h>
#include <botan/mceliece.h>
namespace Botan {
void mceliece_decrypt(secure_vector<byte>& plaintext_out,
secure_vector<byte>& error_mask_out,
const byte ciphertext[],
size_t ciphertext_len,
const McEliece_PrivateKey& key);
void mceliece_decrypt(secure_vector<byte>& plaintext_out,
secure_vector<byte>& error_mask_out,
const secure_vector<byte>& ciphertext,
const McEliece_PrivateKey& key);
secure_vector<byte> mceliece_decrypt(
secure_vector<gf2m> & error_pos,
const byte *ciphertext, u32bit ciphertext_len,
const McEliece_PrivateKey & key);
void mceliece_encrypt(secure_vector<byte>& ciphertext_out,
secure_vector<byte>& error_mask_out,
const secure_vector<byte>& plaintext,
const McEliece_PublicKey& key,
RandomNumberGenerator& rng);
McEliece_PrivateKey generate_mceliece_key(RandomNumberGenerator &rng,
u32bit ext_deg,
u32bit code_length,
u32bit t);
}
#endif
|