aes-omac1.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * One-key CBC MAC (OMAC1) hash with AES
  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_vector - One-Key CBC MAC (OMAC1) hash with AES
  25. * @key: Key for the hash operation
  26. * @key_len: Key length in octets
  27. * @num_elem: Number of elements in the data vector
  28. * @addr: Pointers to the data areas
  29. * @len: Lengths of the data blocks
  30. * @mac: Buffer for MAC (128 bits, i.e., 16 bytes)
  31. * Returns: 0 on success, -1 on failure
  32. *
  33. * This is a mode for using block cipher (AES in this case) for authentication.
  34. * OMAC1 was standardized with the name CMAC by NIST in a Special Publication
  35. * (SP) 800-38B.
  36. */
  37. int omac1_aes_vector(const u8 *key, size_t key_len, size_t num_elem,
  38. const u8 *addr[], const size_t *len, u8 *mac)
  39. {
  40. void *ctx;
  41. u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE];
  42. const u8 *pos, *end;
  43. size_t i, e, left, total_len;
  44. ctx = aes_encrypt_init(key, key_len);
  45. if (ctx == NULL)
  46. return -1;
  47. os_memset(cbc, 0, AES_BLOCK_SIZE);
  48. total_len = 0;
  49. for (e = 0; e < num_elem; e++)
  50. total_len += len[e];
  51. left = total_len;
  52. e = 0;
  53. pos = addr[0];
  54. end = pos + len[0];
  55. while (left >= AES_BLOCK_SIZE) {
  56. for (i = 0; i < AES_BLOCK_SIZE; i++) {
  57. cbc[i] ^= *pos++;
  58. if (pos >= end) {
  59. /*
  60. * Stop if there are no more bytes to process
  61. * since there are no more entries in the array.
  62. */
  63. if (i + 1 == AES_BLOCK_SIZE &&
  64. left == AES_BLOCK_SIZE)
  65. break;
  66. e++;
  67. pos = addr[e];
  68. end = pos + len[e];
  69. }
  70. }
  71. if (left > AES_BLOCK_SIZE)
  72. aes_encrypt(ctx, cbc, cbc);
  73. left -= AES_BLOCK_SIZE;
  74. }
  75. os_memset(pad, 0, AES_BLOCK_SIZE);
  76. aes_encrypt(ctx, pad, pad);
  77. gf_mulx(pad);
  78. if (left || total_len == 0) {
  79. for (i = 0; i < left; i++) {
  80. cbc[i] ^= *pos++;
  81. if (pos >= end) {
  82. /*
  83. * Stop if there are no more bytes to process
  84. * since there are no more entries in the array.
  85. */
  86. if (i + 1 == left)
  87. break;
  88. e++;
  89. pos = addr[e];
  90. end = pos + len[e];
  91. }
  92. }
  93. cbc[left] ^= 0x80;
  94. gf_mulx(pad);
  95. }
  96. for (i = 0; i < AES_BLOCK_SIZE; i++)
  97. pad[i] ^= cbc[i];
  98. aes_encrypt(ctx, pad, mac);
  99. aes_encrypt_deinit(ctx);
  100. return 0;
  101. }
  102. /**
  103. * omac1_aes_128_vector - One-Key CBC MAC (OMAC1) hash with AES-128
  104. * @key: 128-bit key for the hash operation
  105. * @num_elem: Number of elements in the data vector
  106. * @addr: Pointers to the data areas
  107. * @len: Lengths of the data blocks
  108. * @mac: Buffer for MAC (128 bits, i.e., 16 bytes)
  109. * Returns: 0 on success, -1 on failure
  110. *
  111. * This is a mode for using block cipher (AES in this case) for authentication.
  112. * OMAC1 was standardized with the name CMAC by NIST in a Special Publication
  113. * (SP) 800-38B.
  114. */
  115. int omac1_aes_128_vector(const u8 *key, size_t num_elem,
  116. const u8 *addr[], const size_t *len, u8 *mac)
  117. {
  118. return omac1_aes_vector(key, 16, num_elem, addr, len, mac);
  119. }
  120. /**
  121. * omac1_aes_128 - One-Key CBC MAC (OMAC1) hash with AES-128 (aka AES-CMAC)
  122. * @key: 128-bit key for the hash operation
  123. * @data: Data buffer for which a MAC is determined
  124. * @data_len: Length of data buffer in bytes
  125. * @mac: Buffer for MAC (128 bits, i.e., 16 bytes)
  126. * Returns: 0 on success, -1 on failure
  127. *
  128. * This is a mode for using block cipher (AES in this case) for authentication.
  129. * OMAC1 was standardized with the name CMAC by NIST in a Special Publication
  130. * (SP) 800-38B.
  131. */
  132. int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
  133. {
  134. return omac1_aes_128_vector(key, 1, &data, &data_len, mac);
  135. }
  136. /**
  137. * omac1_aes_256 - One-Key CBC MAC (OMAC1) hash with AES-256 (aka AES-CMAC)
  138. * @key: 256-bit key for the hash operation
  139. * @data: Data buffer for which a MAC is determined
  140. * @data_len: Length of data buffer in bytes
  141. * @mac: Buffer for MAC (128 bits, i.e., 16 bytes)
  142. * Returns: 0 on success, -1 on failure
  143. *
  144. * This is a mode for using block cipher (AES in this case) for authentication.
  145. * OMAC1 was standardized with the name CMAC by NIST in a Special Publication
  146. * (SP) 800-38B.
  147. */
  148. int omac1_aes_256(const u8 *key, const u8 *data, size_t data_len, u8 *mac)
  149. {
  150. return omac1_aes_vector(key, 32, 1, &data, &data_len, mac);
  151. }