Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to create PrivateKey by importing pem private key? #421

Closed
Kejiasir opened this issue Aug 30, 2023 · 7 comments · Fixed by #453
Closed

How to create PrivateKey by importing pem private key? #421

Kejiasir opened this issue Aug 30, 2023 · 7 comments · Fixed by #453
Labels
🔏 enhancement New feature or request

Comments

@Kejiasir
Copy link

For example, a private key string of this form:

-----BEGIN PRIVATE KEY-----
MIGTAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHkwdwIBAQQgeeKPvGwZ92ghbN4+
bReH21oDBQnD1f0/HOs8usdsdSDuouioi77DSY9sdsa9dya89d8s/aDrJxITXeXo
/QFWM+SKDJLdfsfw4A546Jsdf/ipgevqznDVKTDJxoOK6DliXS20GQjZZ9T6xx3D
ZqoY65zp
-----END PRIVATE KEY-----

@csjones
Copy link
Contributor

csjones commented Aug 30, 2023

Hey @Kejiasir 👋

Importing a pem private key isn't supported yet. Do you have a specific use case? I can investigate your use case, check out how Apple supports pem, and see about bringing the feature into this package.

@csjones csjones added the 🔏 enhancement New feature or request label Aug 30, 2023
@Kejiasir
Copy link
Author

Kejiasir commented Aug 31, 2023

Hello, @csjones ,thank you for your reply, CryptoKit has a constructor to create a PrivateKey from a pem private key, but it only supports iOS 14 or above. I think it would be great if secp256k1.swift could support importing pem to create a PrivateKey.

CryptoKit example:

if #available(iOS 14.0, *) {
        let prikey = """
            -----BEGIN PRIVATE KEY-----
            MIGTAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHkwdwIBAQQgeeKPvGwZ92ghbN4+
            bReH21oDBQnD1f0/HOs8usdsdSDuouioi77DSY9sdsa9dya89d8s/aDrJxITXeXo
            /QFWM+SKDJLdfsfw4A546Jsdf/ipgevqznDVKTDJxoOK6DliXS20GQjZZ9T6xx3D
            ZqoY65zp
            -----END PRIVATE KEY-----
            """
        
        let message = "Test signature message".data(using: .utf8)!
        let privateKey = try? P256.Signing.PrivateKey(pemRepresentation: prikey)
        
        guard let signature = try? privateKey?.signature(for: message) else { return }
        
        let signDataBase64String = signature.derRepresentation.base64EncodedString()
        print("CryptoKit: \(signDataBase64String)")
        
        let publicKey = privateKey?.publicKey
        let isValidSignature = publicKey?.isValidSignature(signature, for: message)
        print("CryptoKit: \(isValidSignature)")
}

@csjones
Copy link
Contributor

csjones commented Aug 31, 2023

Hey @Kejiasir - want to double check, are you sure you need seccp256k1? I ask because CryptoKit uses seccp256r1 and it wouldn't matter what iOS version this package supports.

@Kejiasir
Copy link
Author

Hey @csjones Yes, I need to use the ecdsa signature algorithm to generate signatures in versions below iOS14. Since I need to create a PrivateKey by importing a pem key, so far, I have not found a more suitable third-party library to achieve it.

@csjones
Copy link
Contributor

csjones commented Sep 3, 2023

Hey @Kejiasir how are you generating these pem keys?

@Kejiasir
Copy link
Author

Kejiasir commented Sep 4, 2023

Hey @csjones This is Apple's official document, and I followed this guideline. Generate keys for in-app purchases

@csjones
Copy link
Contributor

csjones commented Sep 5, 2023

Hey @Kejiasir I think this package isn't what you need based on those Apple instructions and none of the documentation mentions secp256k1. Are you aware of this Swift package? It has support prior to iOS 13.

I am still planning to add PEM key support but I don't have a good test case for basing the implementation on.

@csjones csjones linked a pull request Nov 11, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔏 enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants