0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

nRFConnectSDKを基盤としたSesameの暗号通信 #13 AES-CMAC

Last updated at Posted at 2024-09-11

sesame

cmac

目的

最簡単なCMACの例

code

#include "../cmake-build-debug/zephyr/include/generated/autoconf.h"
#include "../crypt/aes-cbc-cmac.h"

int main(void) {
    unsigned char key[16] = {
            0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
            0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08
    };
    unsigned char input[16] = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
                               0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
    };
    unsigned char mac[16];
    AES_CMAC(key, input, 16, mac);
    print_hex("CMAC", mac, BLOCK_SIZE);//2b79935c 27f4ce79 9c0779b4 fa521a58 

    return 0;
}

暗号化コード

雑談

AES-CMACのような暗号化コードを使用する際、異なるプラットフォームでの対応が異なるため、プラットフォームごとに再実装するのは非常に手間がかかります。そのため、ネットで見つけたAES-CMACのC言語ソースコードをそのまま使用する方法を取ることで、効率的に実装できます。ただし、これによりハードウェアアクセラレーションの可能性を犠牲にしている点には注意が必要です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?