7f5a628dc911c0930b7aa3440a5cd5000ba256f4

All in lib/krb5/n-fold.c: 1. eliminate malloc/free from rr13() because it is always a buffer of the same size called in a tight loop. 2. eliminate memcpy(3) from rr13() by bouncing back and forth between two buffers buf1, buf2 instead of performing the calculation into a tmp buffer and memcpy(3)ing the result back into buf. 3. eliminate code cases from rr13() that I can visually determine will never occur but I'm guessing that the compiler can't, i.e. i. now that we're no longer using malloc(3), rr13() cannot fail, so make it void and avoid the if in the calling routine checking its error code. In case you ask, yes, this made the tests run a little faster, ii. rr13() has code for being passed a number of bits not divisble by 8 but _krb5_n_fold() only passes an int * 8. So, we eliminate this conditional and the associated code. 4. we make rr13() take 2 destination buffers and copy the results into both of them, we use this to eliminate another memcpy(3) from the calling routine. This appears to make it a bit faster as well.
Heimdal is a Kerberos 5 implementation. For information how to install see <http://www.h5l.org/compile.html>. There are briefer man pages for most of the commands. Bug reports and bugs are appreciated, see more under Bug reports in the manual on how we prefer them: <heimdal-bugs@h5l.org>. For more information see the web-page at <http://www.h5l.org/> or the mailing lists: heimdal-announce@sics.se low-volume announcement heimdal-discuss@sics.se high-volume discussion send a mail to heimdal-announce-request@sics.se and heimdal-discuss-request@sics.se respectively to subscribe.
Description
Languages
C
92.1%
Roff
2.8%
Shell
2.3%
Makefile
0.7%
M4
0.5%
Other
1.4%