diff options
| author | Franklin Wei <frankhwei536@gmail.com> | 2016-07-09 15:09:16 -0400 |
|---|---|---|
| committer | Franklin Wei <frankhwei536@gmail.com> | 2016-07-09 15:09:52 -0400 |
| commit | 5fc1b86d596778cf65c844eac2d36f607c870598 (patch) | |
| tree | cb72fcad3e86732217e4162afc540aaa6f68d543 /apps/plugin.c | |
| parent | 2716c64cba0c0772ff9b0064a04710d999b95610 (diff) | |
| download | rockbox-5fc1b86d596778cf65c844eac2d36f607c870598.zip rockbox-5fc1b86d596778cf65c844eac2d36f607c870598.tar.gz rockbox-5fc1b86d596778cf65c844eac2d36f607c870598.tar.bz2 rockbox-5fc1b86d596778cf65c844eac2d36f607c870598.tar.xz | |
support static passwords, hardware-accelerated AES, SHA1
Change-Id: Iacb1ac768741f40a7b3ed39eb820bb228bbabd0a
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 9826c55..588f29b 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -899,6 +899,11 @@ static const struct plugin_api rockbox_api = { piezo_beep, piezo_play, #endif + +#if CONFIG_CPU == S5L8702 && !defined(SIMULATOR) + s5l8702_hwkeyaes, + s5l8702_sha1, +#endif }; static int plugin_buffer_handle; |