diff options
author | Andreas Schneider <mail@cynapses.org> | 2009-03-29 20:19:18 +0000 |
---|---|---|
committer | Andreas Schneider <mail@cynapses.org> | 2009-03-29 20:19:18 +0000 |
commit | 3441e77ddc03a95482575ad9e9c9c5b341408760 (patch) | |
tree | 118be34c2478156a101c4943f5f2c02817ab0a13 /libssh/keyfiles.c | |
parent | 84430b22771ae368267ce20e7c2ef612ada42c7c (diff) | |
download | libssh-3441e77ddc03a95482575ad9e9c9c5b341408760.tar.gz libssh-3441e77ddc03a95482575ad9e9c9c5b341408760.tar.xz libssh-3441e77ddc03a95482575ad9e9c9c5b341408760.zip |
Normalize the license in all files and add vim tab instructions.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@305 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh/keyfiles.c')
-rw-r--r-- | libssh/keyfiles.c | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/libssh/keyfiles.c b/libssh/keyfiles.c index 99510c2b..2ce9f868 100644 --- a/libssh/keyfiles.c +++ b/libssh/keyfiles.c @@ -1,27 +1,29 @@ -/* keyfiles.c */ -/* This part of the library handles private and public key files needed for publickey authentication,*/ -/* as well as servers public hashes verifications and certifications. Lot of code here handles openssh */ -/* implementations (key files aren't standardized yet). */ - /* -Copyright 2003,04 Aris Adamantiadis - -This file is part of the SSH Library - -The SSH Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by -the Free Software Foundation; either version 2.1 of the License, or (at your -option) any later version. - -The SSH Library is distributed in the hope that it will be useful, but -WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public -License for more details. + * keyfiles.c - private and public key handling for authentication. + * + * This file is part of the SSH Library + * + * Copyright (c) 2003-2009 by Aris Adamantiadis + * Copyright (c) 2009 by Andreas Schneider <mail@cynapses.org> + * + * The SSH Library is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation; either version 2.1 of the License, or (at your + * option) any later version. + * + * The SSH Library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + * License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with the SSH Library; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, + * MA 02111-1307, USA. + * + * vim: ts=2 sw=2 et cindent + */ -You should have received a copy of the GNU Lesser General Public License -along with the SSH Library; see the file COPYING. If not, write to -the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, -MA 02111-1307, USA. */ #include <stdio.h> #include <string.h> #include <errno.h> |