~ecryptfs/ecryptfs/trunk

« back to all changes in this revision

Viewing changes to src/utils/io.h

  • Committer: Dustin Kirkland
  • Date: 2009-02-13 15:57:24 UTC
  • Revision ID: kirkland@canonical.com-20090213155724-1q3qz2o0cbyimu9x
debian/ubuntu packaging

Initial checkin of the Debian/Ubuntu packaging

Signed-off-by: Dustin Kirkland <kirkland@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
int manager_menu(void);
27
27
int read_passphrase_salt(char *pass, char *salt);
28
28
int get_string_stdin(char **val, char *prompt, int echo);
 
29
void ecryptfs_get_crypto_modules(struct ecryptfs_cipher_elem *cipher_list_head,
 
30
                                 struct cipher_str_name_map_elem* cipher_opt,
 
31
                                 int *num_cipher_options, int max_cipher_opts,
 
32
                                 int print);
 
33
int ecryptfs_verify_cipher(struct ecryptfs_cipher_elem *cipher_list_head,
 
34
                           char *cipher_name, int key_bytes);
 
35
int default_cipher(char **default_cipher, int *keysize,
 
36
                   struct ecryptfs_cipher_elem *cipher_list_head);
 
37
int
 
38
ecryptfs_select_crypto_module(struct ecryptfs_cipher_elem *cipher_list_head,
 
39
                              char **selected_cipher, int *keysize_bytes);
29
40
int ecryptfs_select_key_mod(struct ecryptfs_key_mod **key_mod,
30
41
                            struct ecryptfs_ctx *ctx);
31
42