[BACK]Return to ssh.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / gzsig

Annotation of src/usr.bin/gzsig/ssh.h, Revision 1.1

1.1     ! marius      1: /*
        !             2:  * ssh.h
        !             3:  *
        !             4:  * Copyright (c) 2001 Dug Song <dugsong@monkey.org>
        !             5:  *
        !             6:  *   Redistribution and use in source and binary forms, with or without
        !             7:  *   modification, are permitted provided that the following conditions
        !             8:  *   are met:
        !             9:  *
        !            10:  *   1. Redistributions of source code must retain the above copyright
        !            11:  *      notice, this list of conditions and the following disclaimer.
        !            12:  *   2. Redistributions in binary form must reproduce the above copyright
        !            13:  *      notice, this list of conditions and the following disclaimer in the
        !            14:  *      documentation and/or other materials provided with the distribution.
        !            15:  *   3. The names of the copyright holders may not be used to endorse or
        !            16:  *      promote products derived from this software without specific
        !            17:  *      prior written permission.
        !            18:  *
        !            19:  *   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
        !            20:  *   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
        !            21:  *   AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
        !            22:  *   THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
        !            23:  *   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
        !            24:  *   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
        !            25:  *   OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
        !            26:  *   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
        !            27:  *   OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
        !            28:  *   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        !            29:  *
        !            30:  * $Vendor: ssh.h,v 1.2 2005/04/01 16:47:31 dugsong Exp $
        !            31:  */
        !            32:
        !            33: #ifndef SSH_H
        !            34: #define SSH_H
        !            35:
        !            36: int    ssh_load_public(struct key *k, struct iovec *iov);
        !            37: int    ssh_load_private(struct key *k, struct iovec *iov);
        !            38:
        !            39: #endif /* SSH_H */