This commit is contained in:
Dominik Schürmann 2014-02-01 22:59:52 +01:00
parent 716f417948
commit b49bf09e90
3 changed files with 1 additions and 6 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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);