Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "includes.h"
00017
00018 #include "common.h"
00019 #include "aes.h"
00020 #include "aes_wrap.h"
00021
00031 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher)
00032 {
00033 u8 *a, *r, b[16];
00034 int i, j;
00035 void *ctx;
00036
00037 a = cipher;
00038 r = cipher + 8;
00039
00040
00041 os_memset(a, 0xa6, 8);
00042 os_memcpy(r, plain, 8 * n);
00043
00044 ctx = aes_encrypt_init(kek, 16);
00045 if (ctx == NULL)
00046 return -1;
00047
00048
00049
00050
00051
00052
00053
00054
00055 for (j = 0; j <= 5; j++) {
00056 r = cipher + 8;
00057 for (i = 1; i <= n; i++) {
00058 os_memcpy(b, a, 8);
00059 os_memcpy(b + 8, r, 8);
00060 aes_encrypt(ctx, b, b);
00061 os_memcpy(a, b, 8);
00062 a[7] ^= n * j + i;
00063 os_memcpy(r, b + 8, 8);
00064 r += 8;
00065 }
00066 }
00067 aes_encrypt_deinit(ctx);
00068
00069
00070
00071
00072
00073
00074
00075 return 0;
00076 }