]> git.ipfire.org Git - people/ms/strongswan.git/log
people/ms/strongswan.git
11 years agoEnsure buffer in bio_writer_t is properly increased
Tobias Brunner [Tue, 4 Jun 2013 15:29:40 +0000 (17:29 +0200)] 
Ensure buffer in bio_writer_t is properly increased

The previous code was problematic if bufsize/increase was smaller than 8
and an u_int64_t was written when the buffer was too small.  Also, for
large chunks and small bufsizes realloc() was called several times
instead of just once.

11 years agoAdded tests for bio_reader_t
Tobias Brunner [Tue, 4 Jun 2013 14:25:22 +0000 (16:25 +0200)] 
Added tests for bio_reader_t

11 years agoAdd getter for the number of leaks to leak_detective_t
Tobias Brunner [Tue, 4 Jun 2013 14:21:48 +0000 (16:21 +0200)] 
Add getter for the number of leaks to leak_detective_t

11 years agoAdded tests for utils/enum.c
Tobias Brunner [Mon, 3 Jun 2013 16:58:14 +0000 (18:58 +0200)] 
Added tests for utils/enum.c

11 years agoGracefully handle NULL as argument for enum_from_name()
Tobias Brunner [Mon, 3 Jun 2013 16:45:57 +0000 (18:45 +0200)] 
Gracefully handle NULL as argument for enum_from_name()

11 years agoAdditional tests for identification_t added
Tobias Brunner [Thu, 28 Mar 2013 15:53:07 +0000 (16:53 +0100)] 
Additional tests for identification_t added

11 years agoFail DN parsing if OID is unterminated
Tobias Brunner [Mon, 3 Jun 2013 15:30:40 +0000 (17:30 +0200)] 
Fail DN parsing if OID is unterminated

This is the case if the last OID is not followed by a = or if the string
starts with a =.

11 years agoFix DN printing if last RDN has an empty value
Tobias Brunner [Mon, 3 Jun 2013 14:41:45 +0000 (16:41 +0200)] 
Fix DN printing if last RDN has an empty value

11 years agoFix DN parsing if last RDN has an empty value
Tobias Brunner [Mon, 3 Jun 2013 13:53:46 +0000 (15:53 +0200)] 
Fix DN parsing if last RDN has an empty value

11 years agoFix output of ASN.1 GN
Tobias Brunner [Tue, 23 Apr 2013 10:06:54 +0000 (12:06 +0200)] 
Fix output of ASN.1 GN

11 years agoUse chunk_from_str in identification_from_string
Tobias Brunner [Thu, 28 Mar 2013 15:50:36 +0000 (16:50 +0100)] 
Use chunk_from_str in identification_from_string

We always have a non-empty string in those cases as "" is now handled
as ID_ANY.

11 years agoUse local variable in chunk_from_str()
Tobias Brunner [Thu, 28 Mar 2013 15:33:39 +0000 (16:33 +0100)] 
Use local variable in chunk_from_str()

This allows using strdup() or other string functions as argument
without calling them twice.

11 years agoParse empty string as ID_ANY
Tobias Brunner [Thu, 28 Mar 2013 15:30:29 +0000 (16:30 +0100)] 
Parse empty string as ID_ANY

11 years agoAdded tests for utils/utils.[ch]
Tobias Brunner [Thu, 28 Mar 2013 09:58:09 +0000 (10:58 +0100)] 
Added tests for utils/utils.[ch]

11 years agoAllow memstr() to be called with NULL arguments
Tobias Brunner [Thu, 28 Mar 2013 13:12:53 +0000 (14:12 +0100)] 
Allow memstr() to be called with NULL arguments

11 years agoRemoved unused clalloc() function
Tobias Brunner [Thu, 28 Mar 2013 10:03:26 +0000 (11:03 +0100)] 
Removed unused clalloc() function

11 years agotimeval_add_ms() fixed
Tobias Brunner [Thu, 28 Mar 2013 09:25:11 +0000 (10:25 +0100)] 
timeval_add_ms() fixed

1000000us are exactly 1s so.

11 years agoAdditional tests for chunk_t
Tobias Brunner [Wed, 27 Mar 2013 18:56:14 +0000 (19:56 +0100)] 
Additional tests for chunk_t

11 years agoAlso capture coverage data for tests but filter them from the result
Tobias Brunner [Wed, 27 Mar 2013 16:41:04 +0000 (17:41 +0100)] 
Also capture coverage data for tests but filter them from the result

Otherwise calls from test cases to static inline functions are not captured.

11 years agoAdd tests for lib->get|set
Tobias Brunner [Wed, 27 Mar 2013 15:35:28 +0000 (16:35 +0100)] 
Add tests for lib->get|set

11 years agoRemove dead code in token enumerator
Tobias Brunner [Wed, 27 Mar 2013 15:15:10 +0000 (16:15 +0100)] 
Remove dead code in token enumerator

Since we always search for the nearest separator (and strip them from
the front of the next token) there can't be any separators left at the
end of a token.

11 years agoAdditional and improved enumerator_t tests
Tobias Brunner [Wed, 27 Mar 2013 14:35:19 +0000 (15:35 +0100)] 
Additional and improved enumerator_t tests

11 years agoTest remove and remove_at of hashtable_t if all items are in the same bucket
Tobias Brunner [Wed, 27 Mar 2013 13:45:07 +0000 (14:45 +0100)] 
Test remove and remove_at of hashtable_t if all items are in the same bucket

11 years agoAdd test cases for invoke_* and clone_* of linked_list_t
Tobias Brunner [Wed, 27 Mar 2013 13:10:12 +0000 (14:10 +0100)] 
Add test cases for invoke_* and clone_* of linked_list_t

11 years agoImprove tests for linked_list_t.replace()
Tobias Brunner [Wed, 27 Mar 2013 12:27:19 +0000 (13:27 +0100)] 
Improve tests for linked_list_t.replace()

11 years agoAdd additional tests for linked_list_t
Tobias Brunner [Wed, 27 Mar 2013 12:22:07 +0000 (13:22 +0100)] 
Add additional tests for linked_list_t

11 years agoImproved test for linked_list_t.insert_before()
Tobias Brunner [Wed, 27 Mar 2013 12:21:52 +0000 (13:21 +0100)] 
Improved test for linked_list_t.insert_before()

11 years agoEnable coverage report for libstrongswan
Tobias Brunner [Wed, 27 Mar 2013 10:54:09 +0000 (11:54 +0100)] 
Enable coverage report for libstrongswan

11 years agoAdd --enable-coverage configure option
Tobias Brunner [Wed, 27 Mar 2013 10:03:56 +0000 (11:03 +0100)] 
Add --enable-coverage configure option

This configure flag enables lcov [1] coverage generation and is intended
to be used with unit tests (--enable-unit-tests is implied).

A html coverage report can be generated by issuing the following command
in the toplevel build directory:

make coverage

[1] - http://ltp.sourceforge.net/coverage/lcov.php

Based on a patch by Adrian-Ken Rueegsegger.

11 years agoUse proper type for enumerator_t/linked_list_t tests
Tobias Brunner [Wed, 27 Mar 2013 10:24:14 +0000 (11:24 +0100)] 
Use proper type for enumerator_t/linked_list_t tests

Worked with -O2 but not with -O0.

11 years agoConverted test for recursive mutex_t
Tobias Brunner [Wed, 27 Mar 2013 08:16:59 +0000 (09:16 +0100)] 
Converted test for recursive mutex_t

11 years agoRandomly allocate chunk_hash() key during first use
Tobias Brunner [Tue, 26 Mar 2013 18:25:55 +0000 (19:25 +0100)] 
Randomly allocate chunk_hash() key during first use

This avoids hash flooding attacks.

11 years agoReplace chunk_hash() with output from chunk_mac()
Tobias Brunner [Tue, 26 Mar 2013 18:24:24 +0000 (19:24 +0100)] 
Replace chunk_hash() with output from chunk_mac()

The quality is way better, the calculation is a bit slower though.

The key is statically initialized to zero, which will be changed later
to prevent hash flooding.

11 years agoAdding chunk_mac() which calculates a 64-bit MAC using SipHash-2-4
Tobias Brunner [Tue, 26 Mar 2013 17:18:52 +0000 (18:18 +0100)] 
Adding chunk_mac() which calculates a 64-bit MAC using SipHash-2-4

11 years agoConverted tests for chunk_t
Tobias Brunner [Tue, 26 Mar 2013 15:39:44 +0000 (16:39 +0100)] 
Converted tests for chunk_t

11 years agoConverted and added tests for hashtable_t
Tobias Brunner [Tue, 26 Mar 2013 15:38:27 +0000 (16:38 +0100)] 
Converted and added tests for hashtable_t

11 years agoConverted tests for identification_t
Tobias Brunner [Tue, 26 Mar 2013 13:52:33 +0000 (14:52 +0100)] 
Converted tests for identification_t

11 years agoRemove obsolete enumerator/linked_list tests in unit_tester plugin
Tobias Brunner [Tue, 26 Mar 2013 12:13:33 +0000 (13:13 +0100)] 
Remove obsolete enumerator/linked_list tests in unit_tester plugin

11 years agoAdd tests combining linked_list_t and enumerators
Tobias Brunner [Tue, 26 Mar 2013 12:07:23 +0000 (13:07 +0100)] 
Add tests combining linked_list_t and enumerators

11 years agoSome minor Doxygen fixes for linked_list_t
Tobias Brunner [Tue, 26 Mar 2013 11:36:51 +0000 (12:36 +0100)] 
Some minor Doxygen fixes for linked_list_t

11 years agoAdd basic tests for linked_list_t
Tobias Brunner [Tue, 26 Mar 2013 11:18:44 +0000 (12:18 +0100)] 
Add basic tests for linked_list_t

11 years agoRedirect test runner output to stderr
Tobias Brunner [Tue, 26 Mar 2013 09:49:08 +0000 (10:49 +0100)] 
Redirect test runner output to stderr

This allows redirecting stdout of 'make check' to /dev/null.

11 years agoAdd tests for enumerator_t
Tobias Brunner [Tue, 26 Mar 2013 09:41:54 +0000 (10:41 +0100)] 
Add tests for enumerator_t

11 years agoAdd test runner for unit tests in libstrongswan
Tobias Brunner [Tue, 26 Mar 2013 09:21:32 +0000 (10:21 +0100)] 
Add test runner for unit tests in libstrongswan

11 years agotesting: Increase base image size so there is space for test results on winnetou
Tobias Brunner [Tue, 11 Jun 2013 09:01:26 +0000 (11:01 +0200)] 
testing: Increase base image size so there is space for test results on winnetou

11 years agotesting: Ignore errors when searching for imcv log entries in daemon.log
Tobias Brunner [Mon, 10 Jun 2013 16:52:32 +0000 (18:52 +0200)] 
testing: Ignore errors when searching for imcv log entries in daemon.log

11 years agoAdded missing string for full-length HMAC-SHA512 signer
Tobias Brunner [Mon, 10 Jun 2013 09:48:18 +0000 (11:48 +0200)] 
Added missing string for full-length HMAC-SHA512 signer

11 years agoattr: Fix handling of invalid IPs listed after valid ones
Tobias Brunner [Wed, 5 Jun 2013 15:10:45 +0000 (17:10 +0200)] 
attr: Fix handling of invalid IPs listed after valid ones

Invalid IPs listed after a valid one resulted in an attribute
of the same type but with invalid data.

11 years agoattr: fix a compiler warning that family is used uninitialized (seen with -Os)
Martin Willi [Wed, 5 Jun 2013 13:20:37 +0000 (15:20 +0200)] 
attr: fix a compiler warning that family is used uninitialized (seen with -Os)

11 years agoStrictly memwipe_check() for magic only in the affected buffer
Martin Willi [Wed, 5 Jun 2013 12:37:05 +0000 (14:37 +0200)] 
Strictly memwipe_check() for magic only in the affected buffer

Passing back the buffer address we memwipe() is not ideal, as it could, in
theory, change the behavior of the compiler and not-optimize memwipe(). But
as checking a larger stack is very difficult for different architectures
and compilers, we do it nonetheless for now.

11 years agoAllow memwipe() to be called with NULL argument
Tobias Brunner [Mon, 27 May 2013 16:41:16 +0000 (18:41 +0200)] 
Allow memwipe() to be called with NULL argument

11 years agokernel-netlink: add outer addresses to policy when using BEET mode
Michael Rossberg [Wed, 22 May 2013 07:55:46 +0000 (09:55 +0200)] 
kernel-netlink: add outer addresses to policy when using BEET mode

11 years agoopenssl: add support for IP addr blocks in X.509 certificates
Michael Rossberg [Wed, 22 May 2013 07:51:10 +0000 (09:51 +0200)] 
openssl: add support for IP addr blocks in X.509 certificates

11 years agoMake plugins in standalone libimcv configurable
Andreas Steffen [Fri, 24 May 2013 10:56:21 +0000 (12:56 +0200)] 
Make plugins in standalone libimcv configurable

11 years agohost-resolver: don't try to resolve a plain v4 address to an IPv6 address
Volker RĂ¼melin [Sun, 21 Apr 2013 13:10:39 +0000 (15:10 +0200)] 
host-resolver: don't try to resolve a plain v4 address to an IPv6 address

Suppress 'Address family for hostname not supported' errors if a IPv6
client connects in a mixed IPv4/IPv6 environment.

11 years agotraffic-selector: inet_pton is successful only if it returns 1
Martin Willi [Thu, 16 May 2013 08:59:33 +0000 (10:59 +0200)] 
traffic-selector: inet_pton is successful only if it returns 1

11 years agoupdown: pass IKE_SA unique ID in PLUTO_UNIQUEID
Emanuil Hristov [Wed, 17 Apr 2013 09:44:34 +0000 (12:44 +0300)] 
updown: pass IKE_SA unique ID in PLUTO_UNIQUEID

11 years agocapabilities: leak-detective using dlsym() does not need CAP_SYS_NICE anymore
Martin Willi [Wed, 8 May 2013 12:58:59 +0000 (14:58 +0200)] 
capabilities: leak-detective using dlsym() does not need CAP_SYS_NICE anymore

11 years agocapabilities: initialize supplementary groups only when doing a setuid()
Martin Willi [Wed, 8 May 2013 12:58:28 +0000 (14:58 +0200)] 
capabilities: initialize supplementary groups only when doing a setuid()

11 years agoaf-alg: fix number of signers after adding untruncated HMAC-SHA-512 (1f2a34d6)
Martin Willi [Wed, 15 May 2013 14:42:03 +0000 (16:42 +0200)] 
af-alg: fix number of signers after adding untruncated HMAC-SHA-512 (1f2a34d6)

11 years agoRaise LOCAL_AUTH_FAILED alert after receiving AUTHENTICATION_FAILURE
Martin Willi [Wed, 8 May 2013 09:03:33 +0000 (11:03 +0200)] 
Raise LOCAL_AUTH_FAILED alert after receiving AUTHENTICATION_FAILURE

11 years agotesting: Set terminal title when logging in via SSH
Tobias Brunner [Wed, 15 May 2013 08:32:41 +0000 (10:32 +0200)] 
testing: Set terminal title when logging in via SSH

Since we always log in as root use a simpler command prompt. And don't
store duplicate commands in the bash command history.

11 years agoopenssl: Only warn about unavailable FIPS mode if the user requested it
Tobias Brunner [Wed, 8 May 2013 13:23:14 +0000 (15:23 +0200)] 
openssl: Only warn about unavailable FIPS mode if the user requested it

11 years agoMerge branch 'charon-cmd-pkcs12'
Tobias Brunner [Wed, 8 May 2013 13:19:38 +0000 (15:19 +0200)] 
Merge branch 'charon-cmd-pkcs12'

Adds support for PKCS#12 files in charon-cmd and ipsec.secrets.

Also fixes the cleanup of the OpenSSL library in the openssl plugin.

11 years agostroke: Add second password if provided
Tobias Brunner [Wed, 17 Apr 2013 15:32:37 +0000 (17:32 +0200)] 
stroke: Add second password if provided

11 years agoLoad pkcs7 plugin in charon (and while we are at it in nm)
Tobias Brunner [Wed, 17 Apr 2013 15:13:28 +0000 (17:13 +0200)] 
Load pkcs7 plugin in charon (and while we are at it in nm)

11 years agostroke: Fail silently if another builder calls PW callback after giving up
Tobias Brunner [Wed, 17 Apr 2013 14:03:05 +0000 (16:03 +0200)] 
stroke: Fail silently if another builder calls PW callback after giving up

Also reduced the number of tries to 3.

11 years agostroke: Cache passwords so the user is not prompted multiple times for the same password
Tobias Brunner [Wed, 17 Apr 2013 13:54:23 +0000 (15:54 +0200)] 
stroke: Cache passwords so the user is not prompted multiple times for the same password

To verify/decrypt a PKCS#12 container a password might be needed
multiple times.  If it was entered correctly we don't want to bother the
user again with another password prompt.
The passwords for MAC creation and encryption could be different so the
user might be prompted multiple times after all.

11 years agostroke: Fix prompt and error messages in passphrase callback
Tobias Brunner [Wed, 17 Apr 2013 13:51:11 +0000 (15:51 +0200)] 
stroke: Fix prompt and error messages in passphrase callback

11 years agostroke: Load credentials from PKCS#12 files (P12 token)
Tobias Brunner [Wed, 17 Apr 2013 11:49:13 +0000 (13:49 +0200)] 
stroke: Load credentials from PKCS#12 files (P12 token)

11 years agoopenssl: Cleanup thread specific error buffer
Tobias Brunner [Wed, 17 Apr 2013 11:16:20 +0000 (13:16 +0200)] 
openssl: Cleanup thread specific error buffer

11 years agoopenssl: Don't use deprecated CRYPTO_set_id_callback() with OpenSSL >= 1.0.0
Tobias Brunner [Wed, 17 Apr 2013 11:00:51 +0000 (13:00 +0200)] 
openssl: Don't use deprecated CRYPTO_set_id_callback() with OpenSSL >= 1.0.0

11 years agoopenssl: Add PKCS#12 parsing via OpenSSL
Tobias Brunner [Wed, 17 Apr 2013 09:43:06 +0000 (11:43 +0200)] 
openssl: Add PKCS#12 parsing via OpenSSL

11 years agoopenssl: Properly cleanup OpenSSL library
Tobias Brunner [Wed, 17 Apr 2013 09:35:18 +0000 (11:35 +0200)] 
openssl: Properly cleanup OpenSSL library

11 years agocharon-cmd: Add support for PKCS#12 files
Tobias Brunner [Fri, 12 Apr 2013 17:30:03 +0000 (19:30 +0200)] 
charon-cmd: Add support for PKCS#12 files

11 years agoPEM plugin loads PKCS#12 containers from (DER-encoded) files
Tobias Brunner [Fri, 12 Apr 2013 17:00:15 +0000 (19:00 +0200)] 
PEM plugin loads PKCS#12 containers from (DER-encoded) files

It is not actually able to handle PEM encoded PKCS#12 files produced
by OpenSSL.

11 years agoRemove pluto specific certificate types
Tobias Brunner [Fri, 12 Apr 2013 16:41:26 +0000 (18:41 +0200)] 
Remove pluto specific certificate types

11 years agocharon-cmd: match_me/match_other are optional in callback credentials
Tobias Brunner [Fri, 12 Apr 2013 17:32:01 +0000 (19:32 +0200)] 
charon-cmd: match_me/match_other are optional in callback credentials

11 years agocharon-cmd: Request password for private keys
Tobias Brunner [Fri, 12 Apr 2013 16:28:17 +0000 (18:28 +0200)] 
charon-cmd: Request password for private keys

11 years agoAdd support for untruncated HMAC-SHA-512
Tobias Brunner [Fri, 12 Apr 2013 10:48:04 +0000 (12:48 +0200)] 
Add support for untruncated HMAC-SHA-512

11 years agoAlso support 128-bit RC2
Tobias Brunner [Fri, 12 Apr 2013 10:10:22 +0000 (12:10 +0200)] 
Also support 128-bit RC2

11 years agoAdd pkcs12 plugin which adds support for decoding PKCS#12 containers
Tobias Brunner [Fri, 12 Apr 2013 09:59:01 +0000 (11:59 +0200)] 
Add pkcs12 plugin which adds support for decoding PKCS#12 containers

11 years agoFunction added to convert a hash algorithm to an HMAC integrity algorithm
Tobias Brunner [Thu, 11 Apr 2013 17:41:48 +0000 (19:41 +0200)] 
Function added to convert a hash algorithm to an HMAC integrity algorithm

11 years agoSupport the PKCS#5/PKCS#12 encryption scheme used by OpenSSL for private keys
Tobias Brunner [Thu, 11 Apr 2013 17:39:32 +0000 (19:39 +0200)] 
Support the PKCS#5/PKCS#12 encryption scheme used by OpenSSL for private keys

11 years agoRegister PKCS#8 builder for KEY_ANY
Tobias Brunner [Thu, 11 Apr 2013 15:54:45 +0000 (17:54 +0200)] 
Register PKCS#8 builder for KEY_ANY

11 years agoAdd support for PKCS#7/CMS encrypted-data
Tobias Brunner [Thu, 11 Apr 2013 14:19:16 +0000 (16:19 +0200)] 
Add support for PKCS#7/CMS encrypted-data

11 years agoMove PKCS#12 key derivation to a separate file
Tobias Brunner [Thu, 11 Apr 2013 13:02:28 +0000 (15:02 +0200)] 
Move PKCS#12 key derivation to a separate file

11 years agoPKCS#5 wrapper can decrypt PKCS#12-like schemes
Tobias Brunner [Thu, 11 Apr 2013 11:27:02 +0000 (13:27 +0200)] 
PKCS#5 wrapper can decrypt PKCS#12-like schemes

11 years agoAdd test vectors for RC2
Tobias Brunner [Wed, 10 Apr 2013 17:26:05 +0000 (19:26 +0200)] 
Add test vectors for RC2

11 years agoFix cleanup in crypto_tester if a crypter fails
Tobias Brunner [Wed, 10 Apr 2013 17:25:26 +0000 (19:25 +0200)] 
Fix cleanup in crypto_tester if a crypter fails

11 years agoAdd implementation of the RC2 block cipher (RFC 2268)
Tobias Brunner [Wed, 10 Apr 2013 17:24:09 +0000 (19:24 +0200)] 
Add implementation of the RC2 block cipher (RFC 2268)

11 years agoExtract function to convert ASN.1 INTEGER object to u_int64_t
Tobias Brunner [Mon, 8 Apr 2013 16:31:34 +0000 (18:31 +0200)] 
Extract function to convert ASN.1 INTEGER object to u_int64_t

11 years agoExtract PKCS#5 handling from pkcs8 plugin to separate helper class
Tobias Brunner [Mon, 8 Apr 2013 16:13:03 +0000 (18:13 +0200)] 
Extract PKCS#5 handling from pkcs8 plugin to separate helper class

11 years agoMerge branch 'charon-cmd-agent'
Tobias Brunner [Wed, 8 May 2013 12:35:05 +0000 (14:35 +0200)] 
Merge branch 'charon-cmd-agent'

Adds support for authentication via ssh-agent to charon-cmd (RSA and ECDSA keys
are currently supported).

The new sshkey plugin parses SSH public keys in RFC 4253 format.

SSH public keys can be configured with the left|rightsigkey ipsec.conf option,
which replaces left|rightrsasigkey and takes a public key in one of three
formats: SSH (RFC 4253, ssh: prefix), DNSKEY (RFC 3110, dns: prefix, not the
full RR, only the actual RSA key), or PKCS#1 (the default, no prefix).
As before the keys are either encoded in hex (0x) or base64 (0s).
left|rightsigkey also accepts the path to a file containing a PEM or DER
encoded public key.

11 years agocharon-cmd: Changed formatting of optional arguments in usage information
Tobias Brunner [Tue, 7 May 2013 13:05:12 +0000 (15:05 +0200)] 
charon-cmd: Changed formatting of optional arguments in usage information

Optional arguments have to be specified with = after the option.

11 years agocharon-cmd: --agent optionally takes the path to an ssh-agent socket
Tobias Brunner [Tue, 7 May 2013 13:04:02 +0000 (15:04 +0200)] 
charon-cmd: --agent optionally takes the path to an ssh-agent socket

If not given it is read from the SSH_AUTH_SOCK environment variable.

11 years agocharon-cmd: Stop processing options if an argument is missing or an option not recognized
Tobias Brunner [Tue, 7 May 2013 12:53:27 +0000 (14:53 +0200)] 
charon-cmd: Stop processing options if an argument is missing or an option not recognized

11 years agocharon-cmd: Properly initialize options with no additional lines
Tobias Brunner [Tue, 7 May 2013 12:08:20 +0000 (14:08 +0200)] 
charon-cmd: Properly initialize options with no additional lines

11 years agoagent: Use sshkey plugin to parse keys, adds support for ECDSA
Tobias Brunner [Mon, 1 Apr 2013 17:47:23 +0000 (19:47 +0200)] 
agent: Use sshkey plugin to parse keys, adds support for ECDSA

11 years agosshkey: Add support for ECDSA keys
Tobias Brunner [Mon, 1 Apr 2013 16:16:17 +0000 (18:16 +0200)] 
sshkey: Add support for ECDSA keys