mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-07 01:35:00 -05:00
Cleanup
This commit is contained in:
parent
716f417948
commit
b49bf09e90
@ -54,9 +54,7 @@ import com.actionbarsherlock.app.SherlockFragmentActivity;
|
|||||||
import com.beardedhen.androidbootstrap.BootstrapButton;
|
import com.beardedhen.androidbootstrap.BootstrapButton;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gpg --sign-key
|
* Signs the specified public key with the specified secret master key
|
||||||
*
|
|
||||||
* signs the specified public key with the specified secret master key
|
|
||||||
*/
|
*/
|
||||||
public class SignKeyActivity extends SherlockFragmentActivity implements
|
public class SignKeyActivity extends SherlockFragmentActivity implements
|
||||||
SelectSecretKeyLayoutFragment.SelectSecretKeyCallback {
|
SelectSecretKeyLayoutFragment.SelectSecretKeyCallback {
|
||||||
|
@ -40,8 +40,6 @@ import com.actionbarsherlock.app.SherlockFragmentActivity;
|
|||||||
import com.beardedhen.androidbootstrap.BootstrapButton;
|
import com.beardedhen.androidbootstrap.BootstrapButton;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gpg --send-key activity
|
|
||||||
*
|
|
||||||
* Sends the selected public key to a key server
|
* Sends the selected public key to a key server
|
||||||
*/
|
*/
|
||||||
public class UploadKeyActivity extends SherlockFragmentActivity {
|
public class UploadKeyActivity extends SherlockFragmentActivity {
|
||||||
|
@ -178,7 +178,6 @@ public class HkpKeyServer extends KeyServer {
|
|||||||
|
|
||||||
Matcher matcher = PUB_KEY_LINE.matcher(data);
|
Matcher matcher = PUB_KEY_LINE.matcher(data);
|
||||||
while (matcher.find()) {
|
while (matcher.find()) {
|
||||||
// KeyInfo info = new KeyInfo();
|
|
||||||
ImportKeysListEntry info = new ImportKeysListEntry();
|
ImportKeysListEntry info = new ImportKeysListEntry();
|
||||||
info.bitStrength = Integer.parseInt(matcher.group(1));
|
info.bitStrength = Integer.parseInt(matcher.group(1));
|
||||||
info.algorithm = matcher.group(2);
|
info.algorithm = matcher.group(2);
|
||||||
|
Loading…
Reference in New Issue
Block a user