Deleted Added
full compact
key.h (98675) key.h (113908)
1/* $OpenBSD: key.h,v 1.19 2002/03/18 17:23:31 markus Exp $ */
1/* $OpenBSD: key.h,v 1.20 2003/02/12 09:33:04 markus 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

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

73Key *key_from_blob(u_char *, int);
74int key_to_blob(Key *, u_char **, u_int *);
75char *key_ssh_name(Key *);
76int key_names_valid2(const char *);
77
78int key_sign(Key *, u_char **, u_int *, u_char *, u_int);
79int key_verify(Key *, u_char *, u_int, u_char *, u_int);
80
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

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

73Key *key_from_blob(u_char *, int);
74int key_to_blob(Key *, u_char **, u_int *);
75char *key_ssh_name(Key *);
76int key_names_valid2(const char *);
77
78int key_sign(Key *, u_char **, u_int *, u_char *, u_int);
79int key_verify(Key *, u_char *, u_int, u_char *, u_int);
80
81int ssh_dss_sign(Key *, u_char **, u_int *, u_char *, u_int);
82int ssh_dss_verify(Key *, u_char *, u_int, u_char *, u_int);
83int ssh_rsa_sign(Key *, u_char **, u_int *, u_char *, u_int);
84int ssh_rsa_verify(Key *, u_char *, u_int, u_char *, u_int);
85
81#endif
86#endif