oleg-ilechko

Results 2 comments of oleg-ilechko

My bytes should be converted to RSAPublicKey object in some way? I see it is used in every example

So I don't understand how to convert this lines into Dart: ``` KeyFactory factoryKey = KeyFactory.getInstance("RSA"); X509EncodedKeySpec encodedKey = new X509EncodedKeySpec(publicKeyBytes); PublicKey keyPublic = factoryKey.generatePublic(encodedKey); ```