aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/modes/ofb128.c
Commit message (Collapse)AuthorAgeFilesLines
* Experimental symbol renaming to avoid clashes with regular OpenSSL.Dr. Stephen Henson2011-02-161-0/+1
| | | | Make sure crypto.h is included first in any affected files.
* "Jumbo" update for crypto/modes:Andy Polyakov2010-05-041-9/+1
| | | | | | - introduce common modes_lcl.h; - ctr128.c: implement additional CRYPTO_ctr128_encrypt_ctr32 interface; - gcm128.c: add omitted ARM initialization, remove ctx.ctr;
* [co]fb128.c: fix "n=0" bug.Andy Polyakov2010-04-141-2/+2
|
* crypto/modes: make modes.h selfsufficient and rename block_f to block128_t.Andy Polyakov2008-12-231-4/+2
|
* 128-bit block cipher modes consolidation. As consolidated functionsAndy Polyakov2008-12-161-0/+130
rely on indirect call to block functions, they are not as fast as non-consolidated routines. However, performance loss(*) is within measurement error and consolidation advantages are considered to outweigh it. (*) actually one can observe performance *improvement* on e.g. CBC benchmarks thanks to optimization, which also becomes shared among ciphers.