You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does this library implement SecKeyGeneratePair to generate key pair for public key and private key ? I need to generate different key pair for each device and i would like to generate it when user attempt to login. So, are there any way to generate key pair from the swift code instead generate from my terminal ?
The text was updated successfully, but these errors were encountered:
@calvinsug SwiftyRSA doesn't offer key generation but it seems like something that should be offered. The primary goal of the library is to import existing keys because that's what hard to do. I'm happy to review any PR that would help getting us to something like SwiftyRSA.generateKeyPair(padding: ...) -> (PublicKey, PrivateKey).
Does this library implement
SecKeyGeneratePair
to generate key pair for public key and private key ? I need to generate different key pair for each device and i would like to generate it when user attempt to login. So, are there any way to generate key pair from the swift code instead generate from my terminal ?The text was updated successfully, but these errors were encountered: