RSA加密在生成公钥/私钥之前强制关闭

时间:2012-03-24 04:42:11

标签: java android encryption rsa public-key-encryption

我正在尝试为RSA加密生成我的第一个公钥/私钥对。这是我第一次这样做,但通过查看各种教程和网站,我决定使用以下代码。虽然我的代码没有给我错误,但它强制关闭。一切都贴出来,包括我的进口,可以sombody请帮助我理解为什么我的代码没有生成密钥并给我错误?是的,我确实在AndroidManifest.xml文件中声明了它

import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.ObjectOutputStream;
import java.math.BigInteger;
import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.spec.RSAPrivateKeySpec;
import java.security.spec.RSAPublicKeySpec;

    public class RSA {
        public static void GenerateKeyPair() {
            try {
                KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
                kpg.initialize(4096);
                KeyPair kp = kpg.genKeyPair();

                KeyFactory fact = KeyFactory.getInstance("RSA");
                RSAPublicKeySpec pub = fact.getKeySpec(kp.getPublic(),
                        RSAPublicKeySpec.class);
                RSAPrivateKeySpec priv = fact.getKeySpec(kp.getPrivate(),
                        RSAPrivateKeySpec.class);

                saveToFile("public.key", pub.getModulus(), pub.getPublicExponent());
                saveToFile("private.key", priv.getModulus(),
                        priv.getPrivateExponent());
            } catch (Exception e) {
                System.out.println(e.getMessage());
            }
        }

        public static void saveToFile(String fileName, BigInteger mod,
                BigInteger exp) throws Exception {
            ObjectOutputStream oout = new ObjectOutputStream(
                    new BufferedOutputStream(new FileOutputStream(fileName)));
            try {
                oout.writeObject(mod);
                oout.writeObject(exp);
            } catch (Exception e) {
                throw new Exception("error", e);
            } finally {
                oout.close();
            }
        }
    }


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.BLAH"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".UUIDActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Installation"
            android:label="@string/app_name" >
        </activity>
        <activity
            android:name=".RSA"
            android:label="@string/app_name" >
        </activity>
    </application>

</manifest>

2 个答案:

答案 0 :(得分:0)

我不知道是什么导致了你的问题(我们必须看看你在哪里使用这个类进行调试),但如果你可以包含第三方库,我确实有你的选择。请参阅JSch,它可以生成RSA密钥对(例如,用于SSH公钥验证)。文档:http://epaul.github.com/jsch-documentation/simple.javadoc/

您正在寻找的方法是KeyPair.genKeyPair

答案 1 :(得分:0)

@The Obliviator当我看到你AndroidManifest时,我发现你必须从你的清单中删除以下代码。

  <activity
        android:name=".RSA"
        android:label="@string/app_name" >
    </activity>

因为这个类没有扩展为Activity,所以你需要这个类用于GenerateKeyPair,所以不需要在Manifest文件中声明这个类。那么这个类的安装是什么,这个类也没有扩展为Activity然后也删除它。之后,您将成功运行。