Changeset 1269:bf8648506a58 in roaraudio for include/libroar/vio_cmd.h


Ignore:
Timestamp:
02/27/09 12:53:53 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

introduced OpenPGP commands: store, encrypt sym, encrypt pub

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/libroar/vio_cmd.h

    r1266 r1269  
    4343 
    4444#define ROAR_VIO_CMD_BUFSIZE        1024 
     45 
     46 
     47// for OpenPGP interface: 
     48#define ROAR_VIO_PGP_OPTS_NONE      0x00 
     49#define ROAR_VIO_PGP_OPTS_ASCII     0x01 
     50#define ROAR_VIO_PGP_OPTS_SIGN      0x02 
     51#define ROAR_VIO_PGP_OPTS_TEXTMODE  0x04 
     52 
    4553 
    4654struct roar_vio_cmd_child { 
     
    8997int roar_vio_open_gzip(struct roar_vio_calls * calls, struct roar_vio_calls * dst, int level); 
    9098 
    91 int roar_vio_open_gpg(struct roar_vio_calls * calls, struct roar_vio_calls * dst, char * pw, int wronly, char * opts); 
     99int roar_vio_open_gpg(struct roar_vio_calls * calls, struct roar_vio_calls * dst, char * pw, int wronly, char * opts, int options); 
    92100int roar_vio_open_pgp_decrypt(struct roar_vio_calls * calls, struct roar_vio_calls * dst, char * pw); 
     101int roar_vio_open_pgp_store(struct roar_vio_calls * calls, struct roar_vio_calls * dst, int options); 
     102int roar_vio_open_pgp_encrypt_sym(struct roar_vio_calls * calls, struct roar_vio_calls * dst, char * pw, int options); 
     103int roar_vio_open_pgp_encrypt_pub(struct roar_vio_calls * calls, struct roar_vio_calls * dst, char * pw, int options, char * recipient); 
    93104 
    94105#endif 
Note: See TracChangeset for help on using the changeset viewer.