1/* 2 * SPDX-License-Identifier: ISC 3 * 4 * Copyright (c) 2025 Lexi Winter <ivy@FreeBSD.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19comment = "OpenSSH Secure Shell client and server" 20 21desc = <<EOD 22SSH (Secure Shell) is a protocol for connecting to remote systems in a secure 23manner over a potentially untrusted network. SSH supports remote login, file 24transfer, forwarding of TCP and X11 connections, and several other features. 25SSH allows authentication by a variety of methods, including passwords, public 26keys, and Kerberos (GSSAPI). SSH is supported by most Unix systems, as well 27as many non-Unix platforms and network devices. 28 29This implementation of SSH comes from OpenSSH, which is maintained by the 30OpenBSD project. 31 32This package provides the ssh(1) remote login client, along with the scp(1) 33and sftp(1) file transfer utilities, the ssh-agent(1) key management agent 34and related utilities for managing SSH keys, and the sshd(8) server daemon. 35EOD 36 37licenses = [ ISCL ] 38 39annotations { 40 set = "optional,optional-jail" 41} 42