gpgme.h 724 B

12345678910111213141516
  1. #include <gpgme.h>
  2. int rgpgfs_gpgme_get_encrypt_key(gpgme_ctx_t gpgme_ctx, const char *key_name,
  3. gpgme_key_t *key);
  4. int rgpgfs_gpgme_data_to_file(const char *path, gpgme_data_t data);
  5. int rgpgfs_gpgme_encrypt_data_to_file(gpgme_ctx_t gpgme_ctx,
  6. gpgme_key_t recip_keys[],
  7. gpgme_data_t plain_data,
  8. const char *cipher_path);
  9. int rgpgfs_gpgme_encrypt_file_to_file(gpgme_ctx_t gpgme_ctx,
  10. gpgme_key_t recip_keys[],
  11. const char *plain_path,
  12. const char *cipher_path);