myproposal.h revision 65668
11539Srgrimes/*
21539Srgrimes * Copyright (c) 2000 Markus Friedl.  All rights reserved.
31539Srgrimes *
41539Srgrimes * Redistribution and use in source and binary forms, with or without
51539Srgrimes * modification, are permitted provided that the following conditions
61539Srgrimes * are met:
71539Srgrimes * 1. Redistributions of source code must retain the above copyright
81539Srgrimes *    notice, this list of conditions and the following disclaimer.
91539Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
101539Srgrimes *    notice, this list of conditions and the following disclaimer in the
111539Srgrimes *    documentation and/or other materials provided with the distribution.
121539Srgrimes *
131539Srgrimes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
141539Srgrimes * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
151539Srgrimes * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
161539Srgrimes * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
171539Srgrimes * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
181539Srgrimes * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
191539Srgrimes * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
201539Srgrimes * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
211539Srgrimes * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
221539Srgrimes * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
231539Srgrimes */
241539Srgrimes#define KEX_DEFAULT_KEX		"diffie-hellman-group1-sha1"
251539Srgrimes#define	KEX_DEFAULT_PK_ALG	"ssh-dss"
261539Srgrimes#define	KEX_DEFAULT_ENCRYPT	"3des-cbc,blowfish-cbc,arcfour,cast128-cbc"
271539Srgrimes#define	KEX_DEFAULT_MAC		"hmac-sha1,hmac-md5,hmac-ripemd160@openssh.com"
281539Srgrimes#define	KEX_DEFAULT_COMP	"zlib,none"
291539Srgrimes#define	KEX_DEFAULT_LANG	""
301539Srgrimes
311539Srgrimes
321539Srgrimesstatic char *myproposal[PROPOSAL_MAX] = {
331539Srgrimes	KEX_DEFAULT_KEX,
341539Srgrimes	KEX_DEFAULT_PK_ALG,
351539Srgrimes	KEX_DEFAULT_ENCRYPT,
3623655Speter	KEX_DEFAULT_ENCRYPT,
3750473Speter	KEX_DEFAULT_MAC,
381539Srgrimes	KEX_DEFAULT_MAC,
391539Srgrimes	KEX_DEFAULT_COMP,
401539Srgrimes	KEX_DEFAULT_COMP,
411539Srgrimes	KEX_DEFAULT_LANG,
421539Srgrimes	KEX_DEFAULT_LANG
431539Srgrimes};
4424897Sbde