Bläddra i källkod

Remove misleading comment

Marcin Krzyzanowski 2 år sedan
förälder
incheckning
ea07950124
1 ändrade filer med 0 tillägg och 2 borttagningar
  1. 0 2
      README.md

+ 0 - 2
README.md

@@ -563,8 +563,6 @@ let alicesPrivateKey = try RSA(keySize: 1024)
 let alicesPublicKeyData = try alicesPrivateKey.publicKeyDER()
 let alicesPublicKeyData = try alicesPrivateKey.publicKeyDER()
     
     
 // Bob receives the raw external representation of Alices public key and imports it
 // Bob receives the raw external representation of Alices public key and imports it
-// Use DER encoded format. Use openssl to convert between PEM and DER formats if needed,
-// eg.: `openssl rsa -in <file_with_key> -inform PEM -out <new_der_key_file> -outform DER`
 let bobsImportOfAlicesPublicKey = try RSA(rawRepresentation: Data(alicesPublicKeyData))
 let bobsImportOfAlicesPublicKey = try RSA(rawRepresentation: Data(alicesPublicKeyData))
     
     
 // Bob can now encrypt a message for Alice using her public key
 // Bob can now encrypt a message for Alice using her public key