diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-15 20:22:25 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-15 20:22:25 +0200 |
commit | 2c1258c620c5847649367394439cc10d0331d211 (patch) | |
tree | a0464536ff4534783af8cc68249e80b358101d31 /networking/tls_aes.c | |
parent | 08dfafc43757c42971b4bc3709ae7a5cda7c21fb (diff) | |
download | busybox-w32-2c1258c620c5847649367394439cc10d0331d211.tar.gz busybox-w32-2c1258c620c5847649367394439cc10d0331d211.tar.bz2 busybox-w32-2c1258c620c5847649367394439cc10d0331d211.zip |
Move get_unaligned_le32() macros to platform.h
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/tls_aes.c')
-rw-r--r-- | networking/tls_aes.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/networking/tls_aes.c b/networking/tls_aes.c index 6992f1c90..c137442e9 100644 --- a/networking/tls_aes.c +++ b/networking/tls_aes.c | |||
@@ -40,10 +40,6 @@ | |||
40 | */ | 40 | */ |
41 | #include "tls.h" | 41 | #include "tls.h" |
42 | 42 | ||
43 | /* TODO: grep for this and move to libbb */ | ||
44 | #define get_unaligned_be32(buf) ({ uint32_t v; move_from_unaligned32(v, buf); SWAP_BE32(v); }) | ||
45 | |||
46 | |||
47 | // The lookup-tables are marked const so they can be placed in read-only storage instead of RAM | 43 | // The lookup-tables are marked const so they can be placed in read-only storage instead of RAM |
48 | // The numbers below can be computed dynamically trading ROM for RAM - | 44 | // The numbers below can be computed dynamically trading ROM for RAM - |
49 | // This can be useful in (embedded) bootloader applications, where ROM is often limited. | 45 | // This can be useful in (embedded) bootloader applications, where ROM is often limited. |