1

Pythonで再現したいCMAC計算の例がありますが、失敗しています。例は次のようになります。

key = 3ED0920E5E6A0320D823D5987FEAFBB1
msg = CEE9A53E3E463EF1F459635736738962&cmac=

予想される (切り捨てられた) CMAC は次のようになります (注: 切り捨てられたということは、1 秒おきのバイトがドロップされることを意味します)

ECC1E7F6C6C73BF6

そこで、次のコードでこの例を再現しようとしました。

from Crypto.Hash import CMAC
from Crypto.Cipher import AES
from binascii import hexlify, unhexlify

def generate_cmac(key, msg):
    """generate a truncated cmac message.
    Inputs: 
    key: 1-dimensional bytearray of arbitrary length
    msg: 1-dimensional bytearray of arbitrary length
    Outputs:
    CMAC: The cmac number
    CMAC_t: Trunacted CMAC"""


    # Generate CMAC via the CMAC algorithm
    cobj = CMAC.new(key=key, ciphermod=AES)
    cobj.update(msg)
    mac_raw = cobj.digest()

    # Truncate by initializing an empty array and assigning every second byte
    mac_truncated = bytearray(8 * b'\x00')
    it2 = 0
    for it in range(len(mac_raw)):
        if it % 2:
            mac_truncated[it2:it2+1] = mac_raw[it:it+1]
            it2 += 1
    return mac_raw, mac_truncated

key = unhexlify('3ED0920E5E6A0320D823D5987FEAFBB1') # The key as in the example
msg = 'CEE9A53E3E463EF1F459635736738962&cmac='      # The msg as in the example
msg_utf = msg.encode('utf-8')
msg_input = hexlify(msg_utf)                        # Trying to get the bytearray
mac, mact_calc = generate_cmac(key, msg_input)      # Calculate the CMAC and truncated CMAC
# However the calculated CMAC does not match the cmac of the example

私の関数generate_cmac()は他のケースでは完全に機能しますが、この例ではなぜ機能しないのでしょうか?

(興味のある方は、このドキュメントのページ 18/表 6 の例を参考にしてください)

編集: 成功した cmac 計算の例は次のとおりです。

mact_expected = unhexlify('94EED9EE65337086')       # as stated in the application note
key = unhexlify('3FB5F6E3A807A03D5E3570ACE393776F') # called K_SesSDMFileReadMAC
msg = []                                            # zero length input
mac, mact_calc = generate_cmac(key, msg)            # mact_expected and mact_calc are the same
assert mact_expected == mact_calc, "Example 1 failed" # This assertion passes
4

1 に答える 1

2

TLDR :過剰なヘキシル化

下のボックスにはASCIIでコーディングCEE9A53E3E463EF1F459635736738962&cmac=された 38 バイト、つまり434545394135334533453436334546314634353936333537333637333839363226636d61633d.

ただし、コードのように 76 バイトのチューンでこれをさらに hexlified する必要はないと確信しています。言い換えれば、私の賭けはオンです

key = unhexlify('3ED0920E5E6A0320D823D5987FEAFBB1')
msg = 'CEE9A53E3E463EF1F459635736738962&cmac='.encode()
mac, mact_calc = generate_cmac(key, msg)
于 2020-04-06T19:48:59.073 に答える