comparison src/ch/ethz/ssh2/auth/AuthenticationManager.java @ 324:a1a2e33b3565 ganymed

add ecdsa key support everywhere
author Carl Byington <carl@five-ten-sg.com>
date Thu, 31 Jul 2014 09:31:42 -0700
parents 90537ba71897
children
comparison
equal deleted inserted replaced
323:90537ba71897 324:a1a2e33b3565
67 this.tm = tm; 67 this.tm = tm;
68 } 68 }
69 69
70 private byte[] deQueue() throws IOException { 70 private byte[] deQueue() throws IOException {
71 if (connectionClosed) { 71 if (connectionClosed) {
72 throw new IOException("The connection is closed.").initCause(tm.getReasonClosedCause()); 72 throw(IOException) new IOException("The connection is closed.").initCause(tm.getReasonClosedCause());
73 } 73 }
74 74
75 // Wait for packet 75 // Wait for packet
76 try { 76 try {
77 return packets.take(); 77 return packets.take();