summaryrefslogtreecommitdiff
path: root/.depend
Commit message (Collapse)AuthorAgeFilesLines
* dependV_9_3_P1V_9_3Damien Miller2023-03-161-26/+25
|
* upstream: update OpenSSH's Ed25519 code to the last version of SUPERCOPdjm@openbsd.org2023-01-161-6/+2
| | | | | | | | | | (20221122) and change the import approach to the same one we use for Streamlined NTRUPrime: use a shell script to extract the bits we need from SUPERCOP, make some minor adjustments and squish them all into a single file. ok tb@ tobhe@ OpenBSD-Commit-ID: 1bc0fd624cb6af440905b8ba74ac7c03311b8e3b
* update .dependV_9_1_P1Damien Miller2022-10-041-1/+3
|
* Remove workarounds for OpenSSL missing AES-CTR.Darren Tucker2022-07-251-1/+0
| | | | | | | We have some compatibility hacks that were added to support OpenSSL versions that do not support AES CTR mode. Since that time, however, the minimum OpenSSL version that we support has moved to 1.0.1 which *does* have CTR, so this is no longer needed. ok djm@
* dependDamien Miller2022-03-311-1/+1
|
* makedependV_8_9_P1Damien Miller2022-02-231-1/+1
|
* dependDamien Miller2022-01-251-1/+1
|
* dependDamien Miller2022-01-071-3/+3
|
* dependDamien Miller2021-11-291-49/+47
|
* update dependsDamien Miller2021-11-181-47/+49
|
* dependDamien Miller2021-10-281-1/+0
|
* dependV_8_7_P1Damien Miller2021-08-201-158/+158
|
* upstream: on fatal errors, make scp wait for ssh connection beforedjm@openbsd.org2021-08-101-49/+47
| | | | | | | | exiting avoids LogLevel=verbose (or greater) messages from ssh appearing after scp has returned exited and control has returned to the shell; ok markus@ OpenBSD-Commit-ID: ef9dab5ef5ae54a6a4c3b15d380568e94263456c
* use openbsd-compat glob.h is requiredDamien Miller2021-08-041-48/+50
|
* upstream: support for using the SFTP protocol for file transfers indjm@openbsd.org2021-08-031-1/+1
| | | | | | | | | | | | | scp, via a new "-M sftp" option. Marked as experimental for now. Some corner-cases exist, in particular there is no attempt to provide bug-compatibility with scp's weird "double shell" quoting rules. Mostly by Jakub Jelen in GHPR#194 with some tweaks by me. ok markus@ Thanks jmc@ for improving the scp.1 bits. OpenBSD-Commit-ID: 6ce4c9157ff17b650ace571c9f7793d92874051c
* dependV_8_6_P1V_8_6Damien Miller2021-04-161-90/+90
|
* update dependV_8_5_P1Damien Miller2021-03-021-9/+11
|
* upstream: Update/replace the experimental post-quantim hybrid keydjm@openbsd.org2020-12-291-3/+4
| | | | | | | | | | | | | | | | | | | | exchange method based on Streamlined NTRU Prime (coupled with X25519). The previous sntrup4591761x25519-sha512@tinyssh.org method is replaced with sntrup761x25519-sha512@openssh.com. Per the authors, sntrup4591761 was replaced almost two years ago by sntrup761. The sntrup761 implementaion, like sntrup4591761 before it, is public domain code extracted from the SUPERCOP cryptography benchmark suite (https://bench.cr.yp.to/supercop.html). Thanks for Daniel J Bernstein for guidance on algorithm selection. Patch from Tobias Heider; feedback & ok markus@ and myself (note this both the updated method and the one that it replaced are disabled by default) OpenBSD-Commit-ID: 2bf582b772d81ee24e911bb6f4b2aecfd39338ae
* upstream: use the new variant log macros instead of prependingdjm@openbsd.org2020-10-181-96/+96
| | | | | | __func__ and appending ssh_err(r) manually; ok markus@ OpenBSD-Commit-ID: 1f14b80bcfa85414b2a1a6ff714fb5362687ace8
* .dependDamien Miller2020-09-201-2/+2
|
* dependDamien Miller2020-05-291-49/+46
|
* make dependDamien Miller2020-05-131-45/+48
|
* Update .depend.Darren Tucker2020-05-021-2/+4
|
* Update .depend.Darren Tucker2020-04-241-3/+4
|
* dependDamien Miller2020-02-061-5/+5
|
* dependDamien Miller2020-01-261-1/+2
|
* dependDamien Miller2020-01-211-44/+44
|
* Update depend to remove rmd160.h.Darren Tucker2020-01-141-176/+173
|
* Remove auth-skey.c.Darren Tucker2020-01-061-1/+0
| | | | S/Key support was removed in OpenSSH 7.8 but this file was missed.
* refresh dependDamien Miller2019-12-301-4/+4
|
* adapt Makefile to ssh-sk-client everywhereDamien Miller2019-12-141-1/+2
|
* Sort depends.Darren Tucker2019-12-111-5/+5
|
* Update depend to include sk files.Darren Tucker2019-12-111-3/+3
|
* upstream: directly support U2F/FIDO2 security keys in OpenSSH bydjm@openbsd.org2019-11-151-43/+45
| | | | | | | | linking against the (previously external) USB HID middleware. The dlopen() capability still exists for alternate middlewares, e.g. for Bluetooth, NFC and test/debugging. OpenBSD-Commit-ID: 14446cf170ac0351f0d4792ba0bca53024930069
* Rebuild .depend.Darren Tucker2019-11-021-171/+174
|
* dependDamien Miller2019-11-011-5/+8
|
* dependDamien Miller2019-10-091-1/+1
|
* upstream: fixes for !WITH_OPENSSL compilation; ok dtucker@djm@openbsd.org2019-09-061-40/+41
| | | | OpenBSD-Commit-ID: 7fd68eaa9e0f7482b5d4c7e8d740aed4770a839f
* Revert one dependency per line change.Darren Tucker2019-07-191-5888/+166
| | | | | | It turns out that having such a large number of lines in the .depend file will cause the memory usage of awk during AC_SUBST to blow up on at least NetBSD's awk, causing configure to fail.
* Force dependencies one per line.Darren Tucker2019-07-191-166/+5888
| | | | | Force makedepend to output one dependency per line, which will make reading diffs against it much easier. ok djm@
* make depend.Darren Tucker2019-07-191-39/+39
|
* dependDamien Miller2019-07-161-2/+2
|
* remove realpath() compat replacementDamien Miller2019-07-081-2/+2
| | | | | | | | | | | | We shipped a BSD implementation of realpath() because sftp-server depended on its behaviour. OpenBSD is now moving to a more strictly POSIX-compliant realpath(2), so sftp-server now unconditionally requires its own BSD-style realpath implementation. As such, there is no need to carry another independant implementation in openbsd-compat. ok dtucker@
* upstream: Remove crc32.{c,h} which were only used by the now-gonedtucker@openbsd.org2019-05-081-3/+2
| | | | | | SSH1 protocol. Patch from yumkam at gmail.com, ok deraadt. OpenBSD-Commit-ID: cceda5876c5ba6b4d8abcd52335329198cee3240
* makedependV_8_0_P1Damien Miller2019-04-181-1/+1
|
* upstream: openssh-7.9 accidentally reused the server's algorithm listsdjm@openbsd.org2019-02-241-1/+1
| | | | | | | | | | | | | | in the client for KEX, ciphers and MACs. The ciphers and MACs were identical between the client and server, but the error accidentially disabled the diffie-hellman-group-exchange-sha1 KEX method. This fixes the client code to use the correct method list, but because nobody complained, it also disables the diffie-hellman-group-exchange-sha1 KEX method. Reported by nuxi AT vault24.org via bz#2697; ok dtucker OpenBSD-Commit-ID: e30c33a23c10fd536fefa120e86af1842e33fd57
* dependDamien Miller2019-01-231-2/+2
|
* dependDamien Miller2019-01-211-31/+28
|
* dependDamien Miller2019-01-201-50/+49
|
* upstream: move client/server SSH-* banners to buffers underdjm@openbsd.org2018-12-271-3/+3
| | | | | | | | | | | | | ssh->kex and factor out the banner exchange. This eliminates some common code from the client and server. Also be more strict about handling \r characters - these should only be accepted immediately before \n (pointed out by Jann Horn). Inspired by a patch from Markus Schmidt. (lots of) feedback and ok markus@ OpenBSD-Commit-ID: 1cc7885487a6754f63641d7d3279b0941890275b