blob: 847f898d59470109bce421cea909c9fa9f45f8ac (
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
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "apps.h"
#if defined(BOTAN_HAS_X509_CERTIFICATES) && defined(BOTAN_HAS_RSA)
#include <botan/x509self.h>
#include <botan/rsa.h>
#include <fstream>
#include <memory>
using namespace Botan;
namespace {
int pkcs10(int argc, char* argv[])
{
if(argc != 6)
{
std::cout << "Usage: " << argv[0]
<< " passphrase name country_code organization email" << std::endl;
return 1;
}
try
{
AutoSeeded_RNG rng;
RSA_PrivateKey priv_key(rng, 1024);
std::ofstream key_file("private.pem");
key_file << PKCS8::PEM_encode(priv_key, rng, argv[1]);
X509_Cert_Options opts;
opts.common_name = argv[2];
opts.country = argv[3];
opts.organization = argv[4];
opts.email = argv[5];
PKCS10_Request req = X509::create_cert_req(opts, priv_key,
"SHA-256", rng);
std::ofstream req_file("req.pem");
req_file << req.PEM_encode();
}
catch(std::exception& e)
{
std::cout << e.what() << std::endl;
return 1;
}
return 0;
}
REGISTER_APP(pkcs10);
}
#endif // BOTAN_HAS_X509_CERTIFICATES && BOTAN_HAS_RSA
|