Hi, On Mon, Feb 8, 2016 at 4:55 PM, Arne Schwabe <schw...@uni-paderborn.de> wrote: > Am 07.02.16 um 20:47 schrieb Steffan Karger: >> In preparation for AEAD cipher modes, which will need the same >> functionality. >> >> Should not change any behaviour. > > ACK. Passing gc instead of using an own gc does not really matter in > this case.
I chose to pass the gc for performance reasons. Passing the gc should be faster (even 'free' if the compiler decides to inline). This is in the critical path for packet processing, so I tried to keep overhead to a minimum. -Steffan