This file is indexed.

/usr/lib/python2.7/dist-packages/fte/encrypter.py is in python-fte 0.1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#!/usr/bin/env python
# -*- coding: utf-8 -*-




from Crypto.Cipher import AES
from Crypto.Hash import HMAC
from Crypto.Hash import SHA512
from Crypto.Util import Counter

import fte.bit_ops


class InvalidKeyLengthError(Exception):

    """Raised when the input key length is not the correct size.
    """
    pass


class PlaintextTypeError(Exception):

    """Raised when the plaintext input to encrypt is not a string.
    """
    pass


class CiphertextTypeError(Exception):

    """Raised when the ciphertext input to decrypt is not a string.
    """
    pass


class RecoverableDecryptionError(Exception):

    """Raised when a non-fatal decryption error occurs, such as attempting to decrypt a substring of a valid ciphertext.
    """
    pass


class UnrecoverableDecryptionError(Exception):

    """Raised when a fatal decryption error occurs, such as an invalid MAC.
    """
    pass


class Encrypter(object):

    """On initialization, accepts optional keys ``K1`` and ``K2`` which much be exactly 16 bytes each.
    Object is a stateless encryption scheme with ``encrypt`` and ``decrypt`` functions.
    See https://kpdyer.com/publications/ccs2013-fte.pdf for a description of the scheme.

    If ``K1`` is not specified, its default value is ``0xffffffffffffffffffffffffffffffff``.
    If ``K2`` is not specified, its default value is ``0x00000000000000000000000000000000``.
    """

    _MAC_LENGTH = AES.block_size
    _IV_LENGTH = 7
    _MSG_COUNTER_LENGTH = 8
    _CTXT_EXPANSION = 1 + _IV_LENGTH + _MSG_COUNTER_LENGTH + _MAC_LENGTH

    def __init__(self, K1=None, K2=None):

        if K1 is not None:
            is_correct_length = (len(K1) == AES.block_size)
            if not is_correct_length:
                raise InvalidKeyLengthError(
                    'K1 must be exactly 16 bytes long.')

        if K2 is not None:
            is_correct_length = (len(K2) == AES.block_size)
            if not is_correct_length:
                raise InvalidKeyLengthError(
                    'K2 must be exactly 16 bytes long.')

        self.K1 = K1 if K1 else '\xFF' * AES.block_size
        self.K2 = K2 if K2 else '\x00' * AES.block_size

        self._ecb_enc_K1 = AES.new(self.K1, AES.MODE_ECB)
        self._ecb_enc_K2 = AES.new(self.K2, AES.MODE_ECB)

    def encrypt(self, plaintext, iv_bytes=None):
        """Given ``plaintext``, returns a ``ciphertext`` encrypted with an authenticated-encryption scheme, using the keys specified in ``__init__``.
        Ciphertext expansion is deterministic, the output ciphertext is always 42 bytes longer than the input ``plaintext``.
        The input ``plaintext`` can be ``''``.

        Raises ``PlaintextTypeError`` if input plaintext is not a string.
        """

        if not isinstance(plaintext, str):
            raise PlaintextTypeError("Input plaintext is not of type string")

        if iv_bytes is None:
            iv_bytes = fte.bit_ops.random_bytes(Encrypter._IV_LENGTH)

        iv1_bytes = '\x01' + iv_bytes
        iv2_bytes = '\x02' + iv_bytes

        W1 = iv1_bytes
        W1 += fte.bit_ops.long_to_bytes(
            len(plaintext), Encrypter._MSG_COUNTER_LENGTH)
        W1 = self._ecb_enc_K1.encrypt(W1)

        counter_length_in_bits = AES.block_size * 8
        counter_val = fte.bit_ops.bytes_to_long(iv2_bytes)
        counter = Counter.new(
            counter_length_in_bits, initial_value=counter_val)
        ctr_enc = AES.new(key=self.K1,
                          mode=AES.MODE_CTR,
                          IV='\x00' * 8 + iv2_bytes,
                          counter=counter)
        W2 = ctr_enc.encrypt(plaintext)

        mac = HMAC.new(self.K2, W1 + W2, SHA512)
        T = mac.digest()
        T = T[:Encrypter._MAC_LENGTH]

        ciphertext = W1 + W2 + T

        return ciphertext

    def decrypt(self, ciphertext):
        """Given ``ciphertext`` returns a ``plaintext`` decrypted using the keys specified in ``__init__``.

        Raises ``CiphertextTypeError`` if the input ``ciphertext`` is not a string.
        Raises ``RecoverableDecryptionError`` if the input ``ciphertext`` has a non-negative message length greater than the ciphertext length.
        Raises ``UnrecoverableDecryptionError`` if invalid padding is detected, or the the MAC is invalid.
        """

        if not isinstance(ciphertext, str):
            raise CiphertextTypeError("Input ciphertext is not of type string")

        plaintext_length = self.getPlaintextLen(ciphertext)
        ciphertext_length = self.getCiphertextLen(ciphertext)
        ciphertext_complete = (len(ciphertext) >= ciphertext_length)
        if ciphertext_complete is False:
            raise RecoverableDecryptionError('Incomplete ciphertext: ('+str(len(ciphertext))+' of '+str(ciphertext_length)+').')

        ciphertext = ciphertext[:ciphertext_length]

        W1_start = 0
        W1_end = AES.block_size
        W1 = ciphertext[W1_start:W1_end]

        W2_start = AES.block_size
        W2_end = AES.block_size + plaintext_length
        W2 = ciphertext[W2_start:W2_end]

        T_start = AES.block_size + plaintext_length
        T_end = AES.block_size + plaintext_length + Encrypter._MAC_LENGTH
        T_expected = ciphertext[T_start:T_end]

        mac = HMAC.new(self.K2, W1 + W2, SHA512)
        T_actual = mac.digest()[:Encrypter._MAC_LENGTH]
        if T_expected != T_actual:
            raise UnrecoverableDecryptionError('Failed to verify MAC.')

        iv2_bytes = '\x02' + self._ecb_enc_K1.decrypt(W1)[1:8]
        counter_val = fte.bit_ops.bytes_to_long(iv2_bytes)
        counter_length_in_bits = AES.block_size * 8
        counter = Counter.new(
            counter_length_in_bits, initial_value=counter_val)
        ctr_enc = AES.new(key=self.K1,
                          mode=AES.MODE_CTR,
                          IV='\x00' * 8 + iv2_bytes,
                          counter=counter)
        plaintext = ctr_enc.decrypt(W2)

        return plaintext

    def getCiphertextLen(self, ciphertext):
        """Given a ``ciphertext`` with a valid header, returns the length of the ciphertext inclusive of ciphertext expansion.
        """

        plaintext_length = self.getPlaintextLen(ciphertext)
        ciphertext_length = plaintext_length + Encrypter._CTXT_EXPANSION
        return ciphertext_length

    def getPlaintextLen(self, ciphertext):
        """Given a ``ciphertext`` with a valid header, returns the length of the plaintext payload.
        """

        completeCiphertextHeader = (len(ciphertext) >= 16)
        if completeCiphertextHeader is False:
            raise RecoverableDecryptionError('Incomplete ciphertext header.')

        ciphertext_header = ciphertext[:16]
        L = self._ecb_enc_K1.decrypt(ciphertext_header)

        padding_expected = '\x00\x00\x00\x00'
        padding_actual = L[-8:-4]
        validPadding = (padding_actual == padding_expected)
        if validPadding is False:
            raise UnrecoverableDecryptionError(
                'Invalid padding: ' + padding_actual)

        message_length = fte.bit_ops.bytes_to_long(L[-8:])

        msgLenNonNegative = (message_length >= 0)
        if msgLenNonNegative is False:
            raise UnrecoverableDecryptionError('Negative message length.')

        return message_length

    def encryptOneBlock(self, plaintext):
        """Perform AES-128 ECB encryption on an 16-byte plaintext using ``K1``.
        """

        assert len(plaintext) == 16
        return self._ecb_enc_K1.encrypt(plaintext)

    def decryptOneBlock(self, ciphertext):
        """Perform AES-128 ECB decryption on a 16-byte ciphertext using ``K1``.
        """

        assert len(ciphertext) == 16
        return self._ecb_enc_K1.decrypt(ciphertext)