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
Hi @ProfessionalMe, currently we only support decryption with privateKey, do you know about another library allowing publicKey(could be in dart or another language), if so I could use as input to take a look how they have implemented
import'package:fast_rsa/fast_rsa.dart';
var result =awaitRSA.decryptOAEP(message, label, Hash.HASH_SHA256, privateKey)
var result =awaitRSA.decryptPKCS1v15(message, privateKey)
var result =awaitRSA.decryptOAEPBytes(messageBytes, label, Hash.SHA256, privateKey)
var result =awaitRSA.decryptPKCS1v15Bytes(messageBytes, privateKey)
No description provided.
The text was updated successfully, but these errors were encountered: