yubikey: check with correct subkey id for sign operation

This commit is contained in:
Vincent Breitmoser 2014-10-04 15:13:38 +02:00
parent c30c36fb2a
commit ba018d1f1b
1 changed files with 1 additions and 1 deletions

View File

@ -571,7 +571,7 @@ public class PgpSignEncrypt {
new SignEncryptResult(SignEncryptResult.RESULT_PENDING_NFC, log);
// Note that the checked key here is the master key, not the signing key
// (although these are always the same on Yubikeys)
result.setNfcData(mSignatureMasterKeyId, e.hashToSign, e.hashAlgo, e.creationTimestamp, mSignaturePassphrase);
result.setNfcData(mSignatureSubKeyId, e.hashToSign, e.hashAlgo, e.creationTimestamp, mSignaturePassphrase);
Log.d(Constants.TAG, "e.hashToSign"+ Hex.toHexString(e.hashToSign));
return result;
}