aes-omac1.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * One-key CBC MAC (OMAC1) hash with AES-128
  3. *
  4. * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
  5. *
  6. * This software may be distributed under the terms of the BSD license.
  7. * See README for more details.
  8. */
  9. #include "includes.h"
  10. #include "common.h"
  11. #include "aes.h"
  12. #include "aes_wrap.h"
  13. static void gf_mulx(u8 *pad)
  14. {
  15. int i, carry;
  16. carry = pad[0] & 0x80;
  17. for (i = 0; i < AES_BLOCK_SIZE - 1; i++)
  18. pad[i] = (pad[i] << 1) | (pad[i + 1] >> 7);
  19. pad[AES_BLOCK_SIZE - 1] <<= 1;
  20. if (carry)
  21. pad[AES_BLOCK_SIZE - 1] ^= 0x87;
  22. }
  23. /**
  24. * omac1_aes_128_vector - One-Key CBC MAC (OMAC1) hash with AES-128
  25. * @key: 128-bit key for the hash operation
  26. * @num_elem: Number of elements in the data vector
  27. * @addr: Pointers to the data areas
  28. * @len: Lengths of the data blocks
  29. * @mac: Buffer for MAC (128 bits, i.e., 16 bytes)
  30. * Returns: 0 on success, -1 on failure
  31. *
  32. * This is a mode for using block cipher (AES in this case) for authentication.
  33. * OMAC1 was standardized with the name CMAC by NIST in a Special Publication
  34. * (SP) 800-38B.
  35. */
  36. int omac1_aes_128_vector(const u8 *key, size_t num_elem,
  37. const u8 *addr[], const size_t *len, u8 *mac)
  38. {
  39. void *ctx;
  40. u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE];
  41. const u8 *pos, *end;
  42. size_t i, e, left, total_len;
  43. ctx = aes_encrypt_init(key, 16);
  44. if (ctx == NULL)
  45. return -1;
  46. os_memset(cbc, 0, AES_BLOCK_SIZE);
  47. total_len = 0;
  48. for (e = 0; e < num_elem; e++)
  49. total_len += len[e];
  50. left = total_len;
  51. e = 0;
  52. pos = addr[0];
  53. end = pos + len[0];
  54. while (left >= AES_BLOCK_SIZE) {
  55. for (i = 0; i < AES_BLOCK_SIZE; i++) {
  56. cbc[i] ^= *pos++;
  57. if (pos >= end) {
  58. e++;
  59. pos = addr[e];
  60. end = pos + len[e];
  61. }
  62. }
  63. if (left > AES_BLOCK_SIZE)
  64. aes_encrypt(ctx, cbc, cbc);
  65. left -= AES_BLOCK_SIZE;
  66. }
  67. os_memset(pad, 0, AES_BLOCK_SIZE);
  68. aes_encrypt(ctx, pad, pad);
  69. gf_mulx(pad);
  70. if (left || total_len == 0) {
  71. for (i = 0; i < left; i++) {
  72. cbc[i] ^= *pos++;
  73. if (pos >= end) {
  74. e++;
  75. pos = addr[e];
  76. end = pos + len[e];
  77. }
  78. }
  79. cbc[left] ^= 0x80;
  80. gf_mulx(pad);
  81. }
  82. for (i = 0; i < AES_BLOCK_SIZE; i++)
  83. pad[i] ^= cbc[i];
  84. aes_encrypt(ctx, pad, mac);
  85. aes_encrypt_deinit(ctx);
  86. return 0;
  87. }
  88. /**
  89. * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC)
  90. * @key: 128-bit key for the hash operation
  91. * @data: Data buffer for which a MAC is determined
  92. * @data_len: Length of data buffer in bytes
  93. * @mac: Buffer for MAC (128 bits, i.e., 16 bytes)
  94. * Returns: 0 on success, -1 on failure
  95. *
  96. * This is a mode for using block cipher (AES in this case) for authentication.
  97. * OMAC1 was standardized with the name CMAC by NIST in a Special Publication
  98. * (SP) 800-38B.
  99. */
  100. int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
  101. {
  102. return omac1_aes_128_vector(key, 1, &data, &data_len, mac);
  103. }