Fix file permissions and remove shebang's
[cascardo/ipsilon.git] / ipsilon / tools / certs.py
1 # Copyright (C) 2014  Simo Sorce <simo@redhat.com>
2 #
3 # see file 'COPYING' for use and warranty information
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 from subprocess import Popen
19 import os
20 import string
21
22
23 class Certificate(object):
24
25     def __init__(self, path=None):
26         self.subject = None
27         self.key = None
28         self.cert = None
29         if path:
30             self.path = path
31         else:
32             self.path = os.getcwd()
33
34     def generate(self, prefix, subject):
35         self.key = os.path.join(self.path, '%s.key' % prefix)
36         self.cert = os.path.join(self.path, '%s.pem' % prefix)
37         self.subject = '/CN=%s' % subject
38         command = ['openssl',
39                    'req', '-x509', '-batch', '-days', '1825',
40                    '-newkey', 'rsa:2048', '-nodes', '-subj', self.subject,
41                    '-keyout', self.key, '-out', self.cert]
42         proc = Popen(command)
43         proc.wait()
44
45     def get_cert(self):
46         if not self.cert:
47             raise ValueError('Certificate unavailable')
48         with open(self.cert, 'r') as f:
49             cert = f.readlines()
50
51         # poor man stripping of BEGIN/END lines
52         if cert[0] == '-----BEGIN CERTIFICATE-----\n':
53             cert = cert[1:]
54         if cert[-1] == '-----END CERTIFICATE-----\n':
55             cert = cert[:-1]
56
57         return string.join(cert)