aboutsummaryrefslogtreecommitdiff
path: root/sys/crypto/rijndael/test00.c
Commit message (Collapse)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-161-2/+0
| | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
* Make test00 compilable again.Maxim Sobolev2008-01-151-1/+1
| | | | Notes: svn path=/head/; revision=175360
* Add a testcase which validates that the same buffer can be passed toPoul-Henning Kamp2003-10-191-0/+75
rijndael_blockDecrypt() as both input and output. This property is important because inside rijndael we can get away with allocating just a 16 byte "work" buffer on the stack (which is very cheap), whereas the calling code would need to allocate the full sized buffer, and in all likelyhood would have to do so with an expensive malloc(9). Notes: svn path=/head/; revision=121259