Tushar Dubey
Tushar Dubey
``` String Encrypt_with_pk(String public_key , String plain_text){ AsymmetricKeyParameter keyParametersPublic = new PublicKeyParameter(RsaKeyHelper().parsePublicKeyFromPem(public_key)); final encrypter = Encrypter(RSA(publicKey: keyParametersPublic.key, encoding: RSAEncoding.PKCS1)); final encrypted = encrypter.encrypt(plain_text); return encrypted.base64; } static String Decrypt_with_sk(String private_key...
CMake Error at CMakeLists.txt:16 (add_subdirectory): add_subdirectory given source "./llama.cpp" which is not an existing directory.