-
Notifications
You must be signed in to change notification settings - Fork 59
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
Comments
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. |
Hello, @csjones ,thank you for your reply,
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)")
} |
Hey @Kejiasir - want to double check, are you sure you need seccp256k1? I ask because |
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. |
Hey @Kejiasir how are you generating these pem keys? |
Hey @csjones This is Apple's official document, and I followed this guideline. Generate keys for in-app purchases |
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. |
For example, a private key string of this form:
-----BEGIN PRIVATE KEY-----
MIGTAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBHkwdwIBAQQgeeKPvGwZ92ghbN4+
bReH21oDBQnD1f0/HOs8usdsdSDuouioi77DSY9sdsa9dya89d8s/aDrJxITXeXo
/QFWM+SKDJLdfsfw4A546Jsdf/ipgevqznDVKTDJxoOK6DliXS20GQjZZ9T6xx3D
ZqoY65zp
-----END PRIVATE KEY-----
The text was updated successfully, but these errors were encountered: