summaryrefslogtreecommitdiffstats
path: root/sys/crypto/sha1.c
Commit message (Collapse)AuthorAgeFilesLines
* crypto routines: Hint minimum buffer sizes to the compilercem2016-05-261-4/+2
| | | | | | | | | | | Use the C99 'static' keyword to hint to the compiler IVs and output digest sizes. The keyword informs the compiler of the minimum valid size for a given array. Obviously not every pointer can be validated (i.e., the compiler can produce false negative but not false positive reports). No functional change. No ABI change. Sponsored by: EMC / Isilon Storage Division
* Use __FBSDID().obrien2003-06-101-2/+4
|
* Remove __P.alfred2002-03-201-1/+1
|
* Sync with recent KAME.ume2001-06-111-1/+1
| | | | | | | | | | | | | | | | | | This work was based on kame-20010528-freebsd43-snap.tgz and some critical problem after the snap was out were fixed. There are many many changes since last KAME merge. TODO: - The definitions of SADB_* in sys/net/pfkeyv2.h are still different from RFC2407/IANA assignment because of binary compatibility issue. It should be fixed under 5-CURRENT. - ip6po_m member of struct ip6_pktopts is no longer used. But, it is still there because of binary compatibility issue. It should be removed under 5-CURRENT. Reviewed by: itojun Obtained from: KAME MFC after: 3 weeks
* Fix broken const'ness in declaration of sha1_loop().archie2000-10-091-4/+2
|
* sync with kame tree as of july00. tons of bug fixes/improvements.itojun2000-07-041-4/+7
| | | | | | | API changes: - additional IPv6 ioctls - IPsec PF_KEY API was changed, it is mandatory to upgrade setkey(8). (also syntax change)
* Fix bogus const-ness in declaration of sha1_loop().archie2000-04-091-4/+2
|
* Prototype fix for IPsec authentication related functionsshin2000-02-101-1/+1
| | | | | | | | | | | | Some of IPsec authentication related functions should have 'const' for its 2nd argument, but not now. But if someone try to use them, and passed const data for those functions, then much bogus compile warnings will be generated. So those funcs prototype should be modified. Requested by: archie Approved by: jkh
* IPSEC support in the kernel.shin1999-12-221-0/+275
pr_input() routines prototype is also changed to support IPSEC and IPV6 chained protocol headers. Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
OpenPOWER on IntegriCloud