aboutsummaryrefslogtreecommitdiff
path: root/aes_keywrap.c
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2017-04-17 14:38:59 -0400
committerPaul Selkirk <paul@psgd.org>2017-04-17 14:38:59 -0400
commitf79826a8472a2c133c773048306ae3403390e723 (patch)
treecf09776847c6f627f57d21d62611c77d63d3c72a /aes_keywrap.c
parent17a50345f06bc60006b40e659b2820d244c71444 (diff)
Make sure hal_aes_keyunwrap() frees the core in all error cases.
Diffstat (limited to 'aes_keywrap.c')
-rw-r--r--aes_keywrap.c20
1 files changed, 13 insertions, 7 deletions
diff --git a/aes_keywrap.c b/aes_keywrap.c
index 08cc05f..d7701f0 100644
--- a/aes_keywrap.c
+++ b/aes_keywrap.c
@@ -4,7 +4,7 @@
* Implementation of RFC 5649 over Cryptech AES core.
*
* Authors: Rob Austein
- * Copyright (c) 2015, NORDUnet A/S
+ * Copyright (c) 2015-2017, NORDUnet A/S
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -272,18 +272,24 @@ hal_error_t hal_aes_keyunwrap(hal_core_t * core,
}
}
- if (Q[0] != 0xA6 || Q[1] != 0x59 || Q[2] != 0x59 || Q[3] != 0xA6)
- return HAL_ERROR_KEYWRAP_BAD_MAGIC;
+ if (Q[0] != 0xA6 || Q[1] != 0x59 || Q[2] != 0x59 || Q[3] != 0xA6) {
+ err = HAL_ERROR_KEYWRAP_BAD_MAGIC;
+ goto out;
+ }
m = (((((Q[4] << 8) + Q[5]) << 8) + Q[6]) << 8) + Q[7];
- if (m <= 8 * (n - 1) || m > 8 * n)
- return HAL_ERROR_KEYWRAP_BAD_LENGTH;
+ if (m <= 8 * (n - 1) || m > 8 * n) {
+ err = HAL_ERROR_KEYWRAP_BAD_LENGTH;
+ goto out;
+ }
if (m % 8 != 0)
for (i = m + 8; i < 8 * (n + 1); i++)
- if (Q[i] != 0x00)
- return HAL_ERROR_KEYWRAP_BAD_PADDING;
+ if (Q[i] != 0x00) {
+ err = HAL_ERROR_KEYWRAP_BAD_PADDING;
+ goto out;
+ }
*Q_len = m;