Skip to content

Commit

Permalink
Fix "-features=rsa_signing" build.
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed Aug 6, 2016
1 parent 4db2684 commit 5f7e741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rsa.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,8 @@ impl RSAKeyPair {
if version != 0 {
return Err(());
}
let mut n = try!(PositiveInteger::from_der(input, 0));
let mut e = try!(PositiveInteger::from_der(input, 0));
let mut n = try!(PositiveInteger::from_der(input));
let mut e = try!(PositiveInteger::from_der(input));
let mut d = try!(PositiveInteger::from_der(input));
let mut p = try!(PositiveInteger::from_der(input));
let mut q = try!(PositiveInteger::from_der(input));
Expand Down

0 comments on commit 5f7e741

Please sign in to comment.