mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
SSH Agent: Fix invalid iqmp output for RSA keys
This fixes loading RSA keys to Pageant.
This commit is contained in:
parent
9805f2331d
commit
8c70856a82
3 changed files with 87 additions and 3 deletions
|
@ -102,14 +102,14 @@ namespace {
|
|||
|
||||
mpi_invm(u, q, p);
|
||||
|
||||
iqmp_hex.resize((bap.length() + 1) * 2);
|
||||
gcry_mpi_print(GCRYMPI_FMT_HEX, reinterpret_cast<unsigned char*>(iqmp_hex.data()), iqmp_hex.length(), nullptr, u);
|
||||
iqmp_hex.resize(bap.length() * 2);
|
||||
gcry_mpi_print(GCRYMPI_FMT_HEX, reinterpret_cast<unsigned char*>(iqmp_hex.data()), iqmp_hex.size(), nullptr, u);
|
||||
|
||||
gcry_mpi_release(u);
|
||||
gcry_mpi_release(p);
|
||||
gcry_mpi_release(q);
|
||||
|
||||
return QByteArray::fromHex(iqmp_hex);
|
||||
return QByteArray::fromHex(QString(iqmp_hex).toLatin1());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue