菜鸟教程小白 发表于 2022-12-13 05:55:32

ios - 苹果操作系统!使用 Bouncy CaSTLe (Java) 生成的公钥进行 RSA 加密


                                            <p><p>我正在 iphone 上开发一个应用程序。我有一个使用加密 (RSA) 的 Java 应用程序,我创建了一个私钥和公钥。我想在 iphone 上使用 Java 应用程序中的公钥。例如:我的公钥是 byte[] publicKey = {0x01,0x02};
如何使用我的 publicKey 加密 iPhone 上的数据?
我看到了 CryptoExercise,但我无法构建它(函数:SecKeyEncrypt err:EXC_BAD_ACCESS)。我可以使用 getPublicKeyBits() 或 getPublicKeyRef() 吗?</p>

<p>这是我的代码:</p>

<pre><code>* (NSData *)getPublicKeyBits {

OSStatus sanityCheck = noErr;

//
const char myByteArray[] = {
0x00, -0x79, 0x7C, 0x34,
0x5C, -0x36, 0x36, 0x75,
0x0E, 0x7F, -0x21, -0x05,
0x41, 0x21, 0x4F, -0x30,
0x2D, 0x5F, 0x08, -0x25,
0x07, -0x08, 0x22, -0x09,
0x32, -0x6C, 0x10, 0x1E, 0x5A,
-0x59, -0x14, -0x55, -0x73, 0x21,
0x5E, -0x54, -0x5E, -0x72, 0x37,
-0x31, -0x25, -0x45, 0x3B, 0x7D, -0x3C,
-0x6F, -0x40, -0x7E, 0x74, -0x68, -0x23,
0x42, 0x12, -0x62, -0x66, 0x4D, 0x20, -0x69,
0x28, -0x28, -0x36, -0x71, 0x21, 0x02, -0x32,
-0x19, 0x66, 0x7D, 0x3E, 0x03, 0x49, -0x66, 0x1F,
-0x38, 0x3C, 0x0A, 0x5F, 0x60, 0x1B, -0x75, 0x41, 0x48,
-0x5F, 0x1F, -0x34, -0x31, -0x09, 0x17, 0x23, 0x11, 0x1E,
-0x68, 0x0B, -0x4D, 0x69, -0x3F, -0x27, 0x13, -0x71, -0x6D,
-0x7A, 0x3A, 0x64, 0x2A, 0x6A, -0x6E, 0x3C, 0x04, -0x70, -0x1C};

NSData *publicKeyBits = NSData dataWithBytes: myByteArray length: sizeof(myByteArray);
//
//NSData * publicKeyBits = {1};

NSMutableDictionary * queryPublicKey = init;

// Set the public key query dictionary.
queryPublicKey setObject:(id)kSecClassKey forKey:(id)kSecClass;
queryPublicKey setObject:publicTag forKey:(id)kSecAttrApplicationTag;
queryPublicKey setObject:(id)kSecAttrKeyTypeRSA forKey:(id)kSecAttrKeyType;
forKey:(id)kSecReturnData;

// Get the key bits.
sanityCheck = SecItemCopyMatching((CFDictionaryRef)queryPublicKey, (CFTypeRef *)&amp;publicKeyBits);

if (sanityCheck != noErr)
{
printf(&#34;sanitycheck error@@@@@&#34;);
publicKeyBits = nil;
}

NSLog(@&#34;** public key bits: %s&#34;, &amp;publicKeyBits);

queryPublicKey release;


return publicKeyBits;
}

// encrypt message

    * (void)encryptWithPublicKey:(uint8_t *)plainBuffer cipherBuffer:(uint8_t *)cipherBuffer

{
NSLog(@&#34;== encryptWithPublicKey()&#34;);
NSData* publicKey= getPublicKeyBits;

OSStatus status = noErr;

NSLog(@&#34;** original plain text 0: %s&#34;, plainBuffer);

size_t cipherBufferSize = 1;
uint8_t *pPlainText = (uint8_t*)&#34;This is a test&#34;;
uint8_t *aCipherText;
size_t *iCipherLength = (size_t*)&#34;1024&#34;;

// Error handling
// Encrypt using the public.
printf(&#34;begin ecrypt !!!!&#34;);
// status = SecKeyEncrypt(publicKey,
// kSecPaddingNone,
// plainBuffer,
// plainBufferSize,
// &amp;cipherBuffer,
// &amp;cipherBufferSize
// );

status = SecKeyEncrypt(publicKey,
kSecPaddingNone,
pPlainText,
strlen( (char*)pPlainText) + 1,
aCipherText,
iCipherLength);
printf(&#34;end encrypt !!!!&#34;);
NSLog(@&#34;encryption result code: %d (size: %d)&#34;, status, cipherBufferSize);
NSLog(@&#34;encrypted text: %s&#34;, cipherBuffer);
}
</code></pre>

<p>请帮助我!
非常感谢</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我不是 100% 关注它,但我认为您的问题可能如下:</p>

<p>公钥/私钥对<em>不</em>用于加密数据。它们仅用于加密 <em>固定大小</em> 的数据 block ,这些数据 block 很短 - 按照公钥/私钥本身大小的顺序。</p>

<p>所以他们使用这些的方式是使用公钥/私钥来加密 [类似于] <em>AESkey </em> - 这又与模式一起使用(如 EBC 等)加密<em>流</em>,或不规则大小的数据 block 。</p>

<p>我认为您正在尝试使用公钥/私钥对来加密您的用户数据,这可能不是公钥/私钥操作的正确大小 - 因此您会泄漏并获得 BAD_ACCESS_ERROR。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 苹果操作系统!使用 Bouncy CaSTLe (Java) 生成的公钥进行 RSA 加密,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/4056969/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/4056969/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 苹果操作系统!使用 Bouncy CaSTLe (Java) 生成的公钥进行 RSA 加密