aes-unwrap.c
Go to the documentation of this file.00001
00017 #include "includes.h"
00018
00019 #include "common.h"
00020 #include "aes.h"
00021
00032 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain)
00033 {
00034 u8 a[8], *r, b[16];
00035 int i, j;
00036 void *ctx;
00037
00038
00039 os_memcpy(a, cipher, 8);
00040 r = plain;
00041 os_memcpy(r, cipher + 8, 8 * n);
00042
00043 ctx = aes_decrypt_init(kek, 16);
00044 if (ctx == NULL)
00045 return -1;
00046
00047
00048
00049
00050
00051
00052
00053
00054 for (j = 5; j >= 0; j--) {
00055 r = plain + (n - 1) * 8;
00056 for (i = n; i >= 1; i--) {
00057 os_memcpy(b, a, 8);
00058 b[7] ^= n * j + i;
00059
00060 os_memcpy(b + 8, r, 8);
00061 aes_decrypt(ctx, b, b);
00062 os_memcpy(a, b, 8);
00063 os_memcpy(r, b + 8, 8);
00064 r -= 8;
00065 }
00066 }
00067 aes_decrypt_deinit(ctx);
00068
00069
00070
00071
00072
00073
00074 for (i = 0; i < 8; i++) {
00075 if (a[i] != 0xa6)
00076 return -1;
00077 }
00078
00079 return 0;
00080 }
00081