comparison src/ch/ethz/ssh2/signature/RSASHA1Verify.java @ 285:486df527ddc5 ganymed

start conversion from trilead to ganymed
author Carl Byington <carl@five-ten-sg.com>
date Fri, 18 Jul 2014 18:33:40 -0700
parents e1c445af8e46
children db9b028016de
comparison
equal deleted inserted replaced
284:4ec87de11e71 285:486df527ddc5
82 82
83 if (s.length == 0) 83 if (s.length == 0)
84 throw new IOException("Error in RSA signature, S is empty."); 84 throw new IOException("Error in RSA signature, S is empty.");
85 85
86 if (log.isEnabled()) { 86 if (log.isEnabled()) {
87 log.log(80, "Decoding ssh-rsa signature string (length: " + s.length + ")"); 87 log.info(80, "Decoding ssh-rsa signature string (length: " + s.length + ")");
88 } 88 }
89 89
90 if (tr.remain() != 0) 90 if (tr.remain() != 0)
91 throw new IOException("Padding in RSA signature!"); 91 throw new IOException("Padding in RSA signature!");
92 92