summaryrefslogtreecommitdiffstats
path: root/usr.sbin/setkey
Commit message (Collapse)AuthorAgeFilesLines
* enable aes-xcbc-mac and aes-ctr, again.ume2003-11-101-3/+3
|
* - do hexdump on send. set length field properlyume2003-11-056-920/+1220
| | | | | | | | | | | | | | | | | - check for encryption/authentication key together with algorithm. - warned if a deprecated encryption algorithm (that includes "simple") is specified. - changed the syntax how to define a policy of a ICMPv6 type and/or a code, like spdadd ::/0 ::/0 icmp6 134,0 -P out none; - random cleanup in parser. - use yyfatal, or return -1 after yyerror. - deal with strdup() failure. - permit scope notation in policy string (-P esp/tunnel/foo%scope-bar%scope/use) - simplify /prefix and [port]. - g/c some unused symbols. Obtained from: KAME
* - styleume2003-10-171-25/+28
| | | | | | | | - rename variable - use strlcpy - const'fy Obtained from: KAME
* - support AES counter mode for ESP.ume2003-10-132-0/+6
| | | | | | | | - use size_t as return type of schedlen(), as there's no error check needed. - clear key schedule buffer before freeing. Obtained from: KAME
* - support AES XCBC MAC for AHume2003-10-132-0/+3
| | | | | | - correct SADB_X_AALG_RIPEMD160HMAC to 8 Obtained from: KAME
* - RIPEMD160 supportume2003-10-122-0/+3
| | | | | | - pass size arg to ah->result (avoid assuming result buffer size) Obtained from: KAME
* Use NI_xxx macros.sumikawa2003-04-161-1/+1
| | | | | Obtained from: KAME MFC after: 1 week
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-012-4/+4
| | | | especially in troff files.
* english(4) police.schweikh2002-12-271-1/+1
|
* Fix spacing for -P (policy) examples.fenner2002-07-271-10/+3
|
* s/IPSEC/IPsec according to RFCsblackend2002-07-231-1/+1
| | | | | | PR: in part docs/38668 Reviewed by: charnier MFC after: 10 days
* The .Nm utilitycharnier2002-07-141-7/+10
|
* Don't install scriptdump which is written in Perl. This isume2002-05-161-1/+1
| | | | corresponding to removal of Perl from base system.
* mdoc(7) police: protect trailing full stops of abbreviationsru2001-08-101-1/+1
| | | | with a trailing zero-width space: `e.g.\&'.
* can not -> cannotsheldonh2001-08-081-1/+1
|
* mdoc(7) police:ru2001-08-071-14/+8
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* printed current sequence number of the SA. accordingly, changedume2001-08-061-2/+2
| | | | | | | | into sadb_x_sa2_sequence from sadb_x_sa2_reserved3 in the sadb_x_sa2 structure. Also the output of setkey is changed. sequence number of the sadb is replaced to the end of the output. Obtained from: KAME
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-8/+11
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Remove whitespace at EOL.dd2001-07-151-1/+1
|
* mdoc(7) police: sort SEE ALSO xrefs (sort -b -f +2 -3 +1 -2).ru2001-07-061-2/+2
|
* Sync with recent KAME.ume2001-06-115-94/+270
| | | | | | | | | | | | | | | | | | 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
* Allow ``ip4'' as an ``upperspec'' value, and update the manbrian2001-05-172-0/+4
| | | | | | | | | | | | | | | | | | page with *all* the permissible values. This should really be spelt ipencap (as /etc/protocols does), but a precedent has already been set by the ipproto array in setkey.c. It would be nice if /etc/protocols was parsed for the upperspec field, but I don't do yacc/lex... This change allows policies that only encrypt the encapsulated packets passing between the endpoints of a gif tunnel. Setting such a policy means that you can still talk directly (and unencrypted) between the public IP numbers with (say) ssh. MFC after: 1 week
* mdoc(7) police: normalize .Nd.ru2001-04-181-1/+1
|
* beforeinstall -> SCRIPTS.ru2001-04-071-9/+3
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-1/+0
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-8/+6
|
* Minor layout fixes.ben2001-01-011-0/+4
| | | | | PR: 24004 Submitted by: Jimmy Olgeni <olgeni@uli.it>
* Change the spelling of `.' to `.' from .OBJDIR since `.' really is whereobrien2000-12-051-1/+1
| | | | generated files land. Also give precedence to generated files.
* The GCC 2.96 snapshots have slightly different rules for finding includeobrien2000-12-011-1/+1
| | | | | | | files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.".
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-5/+5
|
* synchronize with latest kame tree.itojun2000-07-049-353/+543
| | | | | behavior change: policy syntax was changed. you may need to update your setkey(8) configuration files.
* Typo: "ealgo" -> "aalgo"hoek2000-05-151-1/+1
| | | | PR: docs/18547 (OKAZAKI Tetsurou <okazaki@be.to>)
* Fix typophantom2000-05-061-1/+2
| | | | Noticed by: hoek
* . clear `.Os' macro value since this tool is not KAME only anymorephantom2000-05-011-5/+4
| | | | . add integration note
* Fixed missing DPADDs.bde2000-03-271-1/+3
| | | | Fixed style bug for LDADD (don't use += for initial definitions).
* Add missing end of semi colon of an example setkey command.shin2000-03-131-1/+1
| | | | Submitted by: kuriyama
* Typo fix. s/SAD/SPD/.shin2000-03-121-1/+1
| | | | Specified by: jdp
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-2/+4
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* Change IPv6 scoped addr format again based on recent standard discussion.shin2000-02-191-1/+1
| | | | | | | | | Sorry for the flapping, but no change will be done for 4.0 anymore. Official standard will be published around April or later. If different format would be adopted at that time, then support for the new format will be added to the succeeding FreeBSD 4.x. Approved by: jkh
* libipsec and IPsec related apps. (and some KAME related man pages)shin2000-01-0610-0/+3230
Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
OpenPOWER on IntegriCloud