diff options
author | Niels Möller <nisse@lysator.liu.se> | 2020-11-30 12:14:40 +0100 |
---|---|---|
committer | Niels Möller <nisse@lysator.liu.se> | 2020-11-30 12:14:40 +0100 |
commit | 9da429b4a0cc3b77ce5fdb321e432b42841b566b (patch) | |
tree | 3b1e833b02d501cdc4594980a5d62dd73ca4ac8c /camellia-crypt-internal.c | |
parent | 8a7981d407cc086ee533aea1a85ee6c9ffa22403 (diff) | |
download | nettle-9da429b4a0cc3b77ce5fdb321e432b42841b566b.tar.gz |
Delete name mangling of internal Camellia symbols
Diffstat (limited to 'camellia-crypt-internal.c')
-rw-r--r-- | camellia-crypt-internal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/camellia-crypt-internal.c b/camellia-crypt-internal.c index 6e2727b8..1816d768 100644 --- a/camellia-crypt-internal.c +++ b/camellia-crypt-internal.c @@ -135,11 +135,11 @@ #endif void -_camellia_crypt(unsigned nkeys, - const uint64_t *keys, - const struct camellia_table *T, - size_t length, uint8_t *dst, - const uint8_t *src) +_nettle_camellia_crypt(unsigned nkeys, + const uint64_t *keys, + const struct camellia_table *T, + size_t length, uint8_t *dst, + const uint8_t *src) { FOR_BLOCKS(length, dst, src, CAMELLIA_BLOCK_SIZE) { |