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

Annotation of src/usr.bin/ssh/myproposal.h, Revision 1.44

1.44    ! dtucker     1: /* $OpenBSD: myproposal.h,v 1.43 2015/04/21 07:01:00 jsg Exp $ */
1.10      niklas      2:
1.4       deraadt     3: /*
                      4:  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
                      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:  * 1. Redistributions of source code must retain the above copyright
                     10:  *    notice, this list of conditions and the following disclaimer.
                     11:  * 2. Redistributions in binary form must reproduce the above copyright
                     12:  *    notice, this list of conditions and the following disclaimer in the
                     13:  *    documentation and/or other materials provided with the distribution.
                     14:  *
                     15:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
                     16:  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                     17:  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
                     18:  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
                     19:  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
                     20:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
                     21:  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
                     22:  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
                     23:  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
                     24:  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     25:  */
1.26      djm        26:
1.39      markus     27: #ifdef WITH_OPENSSL
                     28:
1.44    ! dtucker    29: #define KEX_COMMON_KEX         \
1.33      markus     30:        "curve25519-sha256@libssh.org," \
1.26      djm        31:        "ecdh-sha2-nistp256," \
                     32:        "ecdh-sha2-nistp384," \
1.27      djm        33:        "ecdh-sha2-nistp521," \
1.44    ! dtucker    34:        "diffie-hellman-group-exchange-sha256"
1.38      markus     35:
1.44    ! dtucker    36: #define KEX_SERVER_KEX KEX_COMMON_KEX "," \
        !            37:        "diffie-hellman-group14-sha1"
        !            38:
        !            39: #define KEX_CLIENT_KEX KEX_COMMON_KEX "," \
1.37      deraadt    40:        "diffie-hellman-group-exchange-sha1," \
1.44    ! dtucker    41:        "diffie-hellman-group14-sha1," \
1.37      deraadt    42:        "diffie-hellman-group1-sha1"
1.26      djm        43:
1.25      djm        44: #define        KEX_DEFAULT_PK_ALG      \
1.26      djm        45:        "ecdsa-sha2-nistp256-cert-v01@openssh.com," \
                     46:        "ecdsa-sha2-nistp384-cert-v01@openssh.com," \
                     47:        "ecdsa-sha2-nistp521-cert-v01@openssh.com," \
1.35      markus     48:        "ssh-ed25519-cert-v01@openssh.com," \
1.26      djm        49:        "ssh-rsa-cert-v01@openssh.com," \
                     50:        "ssh-dss-cert-v01@openssh.com," \
                     51:        "ssh-rsa-cert-v00@openssh.com," \
                     52:        "ssh-dss-cert-v00@openssh.com," \
                     53:        "ecdsa-sha2-nistp256," \
                     54:        "ecdsa-sha2-nistp384," \
                     55:        "ecdsa-sha2-nistp521," \
1.35      markus     56:        "ssh-ed25519," \
1.26      djm        57:        "ssh-rsa," \
                     58:        "ssh-dss"
1.23      djm        59:
1.38      markus     60: #define        KEX_SERVER_ENCRYPT \
1.42      djm        61:        "chacha20-poly1305@openssh.com," \
1.23      djm        62:        "aes128-ctr,aes192-ctr,aes256-ctr," \
1.42      djm        63:        "aes128-gcm@openssh.com,aes256-gcm@openssh.com"
1.38      markus     64:
                     65: #define KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT "," \
1.37      deraadt    66:        "arcfour256,arcfour128," \
                     67:        "aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc," \
                     68:        "aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysator.liu.se"
1.38      markus     69:
                     70: #define        KEX_SERVER_MAC \
1.31      markus     71:        "umac-64-etm@openssh.com," \
                     72:        "umac-128-etm@openssh.com," \
                     73:        "hmac-sha2-256-etm@openssh.com," \
                     74:        "hmac-sha2-512-etm@openssh.com," \
1.41      tedu       75:        "hmac-sha1-etm@openssh.com," \
1.38      markus     76:        "umac-64@openssh.com," \
                     77:        "umac-128@openssh.com," \
                     78:        "hmac-sha2-256," \
1.41      tedu       79:        "hmac-sha2-512," \
                     80:        "hmac-sha1"
1.38      markus     81:
                     82: #define KEX_CLIENT_MAC KEX_SERVER_MAC "," \
                     83:        "hmac-md5-etm@openssh.com," \
1.37      deraadt    84:        "hmac-ripemd160-etm@openssh.com," \
                     85:        "hmac-sha1-96-etm@openssh.com," \
                     86:        "hmac-md5-96-etm@openssh.com," \
                     87:        "hmac-md5," \
                     88:        "hmac-ripemd160," \
                     89:        "hmac-ripemd160@openssh.com," \
                     90:        "hmac-sha1-96," \
                     91:        "hmac-md5-96"
1.39      markus     92:
                     93: #else
                     94:
                     95: #define KEX_SERVER_KEX         \
                     96:        "curve25519-sha256@libssh.org"
                     97: #define        KEX_DEFAULT_PK_ALG      \
                     98:        "ssh-ed25519-cert-v01@openssh.com," \
                     99:        "ssh-ed25519"
                    100: #define        KEX_SERVER_ENCRYPT \
1.43      jsg       101:        "chacha20-poly1305@openssh.com," \
1.42      djm       102:        "aes128-ctr,aes192-ctr,aes256-ctr"
1.39      markus    103: #define        KEX_SERVER_MAC \
1.40      naddy     104:        "umac-64-etm@openssh.com," \
                    105:        "umac-128-etm@openssh.com," \
1.39      markus    106:        "hmac-sha2-256-etm@openssh.com," \
                    107:        "hmac-sha2-512-etm@openssh.com," \
1.41      tedu      108:        "hmac-sha1-etm@openssh.com," \
1.40      naddy     109:        "umac-64@openssh.com," \
                    110:        "umac-128@openssh.com," \
1.39      markus    111:        "hmac-sha2-256," \
1.41      tedu      112:        "hmac-sha2-512," \
                    113:        "hmac-sha1"
1.39      markus    114:
                    115: #define KEX_CLIENT_KEX KEX_SERVER_KEX
                    116: #define        KEX_CLIENT_ENCRYPT KEX_SERVER_ENCRYPT
1.41      tedu      117: #define KEX_CLIENT_MAC KEX_SERVER_MAC
1.39      markus    118:
                    119: #endif /* WITH_OPENSSL */
1.28      djm       120:
1.18      markus    121: #define        KEX_DEFAULT_COMP        "none,zlib@openssh.com,zlib"
1.1       markus    122: #define        KEX_DEFAULT_LANG        ""
                    123:
1.38      markus    124: #define KEX_CLIENT \
                    125:        KEX_CLIENT_KEX, \
                    126:        KEX_DEFAULT_PK_ALG, \
                    127:        KEX_CLIENT_ENCRYPT, \
                    128:        KEX_CLIENT_ENCRYPT, \
                    129:        KEX_CLIENT_MAC, \
                    130:        KEX_CLIENT_MAC, \
                    131:        KEX_DEFAULT_COMP, \
                    132:        KEX_DEFAULT_COMP, \
                    133:        KEX_DEFAULT_LANG, \
                    134:        KEX_DEFAULT_LANG
1.1       markus    135:
1.38      markus    136: #define KEX_SERVER \
                    137:        KEX_SERVER_KEX, \
                    138:        KEX_DEFAULT_PK_ALG, \
                    139:        KEX_SERVER_ENCRYPT, \
                    140:        KEX_SERVER_ENCRYPT, \
                    141:        KEX_SERVER_MAC, \
                    142:        KEX_SERVER_MAC, \
                    143:        KEX_DEFAULT_COMP, \
                    144:        KEX_DEFAULT_COMP, \
                    145:        KEX_DEFAULT_LANG, \
1.1       markus    146:        KEX_DEFAULT_LANG