summaryrefslogtreecommitdiffstats
path: root/conductor/conductor/common/utils/cipherUtils.py
blob: 21a33b4f307380be88c2bf8e03f0ce52b67f2913 (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
74
75
76
77
78
79
#
# -------------------------------------------------------------------------
#   Copyright (c) 2015-2017 AT&T Intellectual Property
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
#
# -------------------------------------------------------------------------
#

import base64
import hashlib
from Crypto import Random
from Crypto.Cipher import AES
from oslo_config import cfg

CONF = cfg.CONF

cipher_opts = [
    cfg.StrOpt('appkey',
               default='ch00se@g003ntropy',
               help='Master key to secure other secrets')
]

CONF.register_opts(cipher_opts, group='auth')


class AESCipher(object):
    __instance = None

    @staticmethod
    def get_instance(key = None):
        if AESCipher.__instance is None:
            print ('Creating the singleton instance')
            AESCipher(key)
        return AESCipher.__instance

    def __init__(self, key=None):
        if AESCipher.__instance is not None:
            raise Exception("This class is a singleton!")
        else:
            AESCipher.__instance = self

        self.bs = 32
        if key is None:
            key = CONF.auth.appkey # ---> python3.8 Code version code
           # key= CONF.auth.appkey.encode() ---> Python 2.7 version code
        # in Python 3+ key is already a b'' type so no need to encode it again.

        self.key = hashlib.sha256(key.encode()).digest()

    def encrypt(self, raw):
        raw = self._pad(raw)
        iv = Random.new().read(AES.block_size)
        cipher = AES.new(self.key, AES.MODE_CBC, iv)
        return base64.b64encode(iv + cipher.encrypt(raw))

    def decrypt(self, enc):
        enc = base64.b64decode(enc)
        iv = enc[:AES.block_size]
        cipher = AES.new(self.key, AES.MODE_CBC, iv)
        return self._unpad(cipher.decrypt(enc[AES.block_size:])).decode('utf-8')

    def _pad(self, s):
        return s + (self.bs - len(s) % self.bs) * chr(self.bs - len(s) % self.bs)

    @staticmethod
    def _unpad(s):
        return s[:-ord(s[len(s)-1:])]