mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-17 06:15:15 -05:00
forgot a thing for secret key export
This commit is contained in:
parent
a221464f38
commit
7017527999
@ -458,30 +458,36 @@ public class ImportExportOperation extends BaseOperation {
|
|||||||
|
|
||||||
// Create an output stream
|
// Create an output stream
|
||||||
ArmoredOutputStream arOutStream = new ArmoredOutputStream(outStream);
|
ArmoredOutputStream arOutStream = new ArmoredOutputStream(outStream);
|
||||||
String version = PgpHelper.getVersionForHeader(mContext);
|
try {
|
||||||
if (version != null) {
|
String version = PgpHelper.getVersionForHeader(mContext);
|
||||||
arOutStream.setHeader("Version", version);
|
if (version != null) {
|
||||||
}
|
arOutStream.setHeader("Version", version);
|
||||||
|
}
|
||||||
|
|
||||||
long keyId = cursor.getLong(0);
|
long keyId = cursor.getLong(0);
|
||||||
|
|
||||||
log.add(LogType.MSG_EXPORT_PUBLIC, 1, KeyFormattingUtils.beautifyKeyId(keyId));
|
log.add(LogType.MSG_EXPORT_PUBLIC, 1, KeyFormattingUtils.beautifyKeyId(keyId));
|
||||||
|
|
||||||
{ // export public key part
|
{ // export public key part
|
||||||
byte[] data = cursor.getBlob(1);
|
byte[] data = cursor.getBlob(1);
|
||||||
arOutStream.write(data);
|
arOutStream.write(data);
|
||||||
arOutStream.close();
|
|
||||||
|
|
||||||
okPublic += 1;
|
okPublic += 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// export secret key part
|
// export secret key part
|
||||||
if (exportSecret && cursor.getInt(3) > 0) {
|
if (exportSecret && cursor.getInt(3) > 0) {
|
||||||
log.add(LogType.MSG_EXPORT_SECRET, 2, KeyFormattingUtils.beautifyKeyId(keyId));
|
log.add(LogType.MSG_EXPORT_SECRET, 2, KeyFormattingUtils.beautifyKeyId(keyId));
|
||||||
byte[] data = cursor.getBlob(2);
|
byte[] data = cursor.getBlob(2);
|
||||||
arOutStream.write(data);
|
arOutStream.write(data);
|
||||||
|
|
||||||
okSecret += 1;
|
okSecret += 1;
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
// make sure this is closed
|
||||||
|
if (arOutStream != null) {
|
||||||
|
arOutStream.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
updateProgress(progress++, numKeys);
|
updateProgress(progress++, numKeys);
|
||||||
|
Loading…
Reference in New Issue
Block a user