static Future<String> encryptString( String publicKey, String plaintext) async { return RSA.encryptPKCS1v15(plaintext, publicKey); }