diff options
author | Tom Rini <trini@konsulko.com> | 2017-11-14 08:39:35 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-11-21 07:43:31 -0500 |
commit | c6831c74a9e9dbedc351de94d23d35188ae1a39b (patch) | |
tree | ec3444def18bc20f81dce3594b01dfdba9097949 /tools/env/fw_env.h | |
parent | 042de609ed49cfc41afb13639850c7b01079a527 (diff) | |
download | u-boot-c6831c74a9e9dbedc351de94d23d35188ae1a39b.tar.gz |
env: Remove CONFIG_ENV_AES support
This support has been deprecated since v2017.09 due to security issues.
We now remove this support.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'tools/env/fw_env.h')
-rw-r--r-- | tools/env/fw_env.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/env/fw_env.h b/tools/env/fw_env.h index 2d37eb50530..b86ca78ba27 100644 --- a/tools/env/fw_env.h +++ b/tools/env/fw_env.h @@ -6,7 +6,6 @@ */ #include <stdint.h> -#include <uboot_aes.h> /* * Programs using the library must check which API is available, @@ -19,13 +18,9 @@ struct env_opts { #ifdef CONFIG_FILE char *config_file; #endif - int aes_flag; /* Is AES encryption used? */ - uint8_t aes_key[AES_KEY_LENGTH]; char *lockname; }; -int parse_aes_key(char *key, uint8_t *bin_key); - /** * fw_printenv() - print one or several environment variables * |