Deleted Added
sdiff udiff text old ( 181110 ) new ( 181111 )
full compact
1/* $OpenBSD: key.h,v 1.27 2008/06/11 21:01:35 grunk Exp $ */
2
3/*
4 * Copyright (c) 2000, 2001 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

--- 27 unchanged lines hidden (view full) ---

37 KEY_UNSPEC
38};
39enum fp_type {
40 SSH_FP_SHA1,
41 SSH_FP_MD5
42};
43enum fp_rep {
44 SSH_FP_HEX,
45 SSH_FP_BUBBLEBABBLE,
46 SSH_FP_RANDOMART
47};
48
49/* key is stored in external hardware */
50#define KEY_FLAG_EXT 0x0001
51
52struct Key {
53 int type;
54 int flags;

--- 34 unchanged lines hidden ---