1 /* backend.c - Dispatcher to the various backends.
2 * Copyright (C) 2009 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
32 #include "be-truecrypt.h"
36 no_such_backend (int conttype
)
38 log_error ("invalid backend %d given - this is most likely a bug\n",
40 return gpg_error (GPG_ERR_INTERNAL
);
44 /* If the backend requires a separate file or directory for the
45 container, return its name by computing it from FNAME which gives
46 the g13 filename. The new file name is allocated and stored at
47 R_NAME, if this is expected to be a directory true is stored at
48 R_ISDIR. If no detached name is expected or an error occurs NULL
49 is stored at R_NAME. The function returns 0 on success or an error
52 be_get_detached_name (int conttype
, const char *fname
,
53 char **r_name
, int *r_isdir
)
60 return be_encfs_get_detached_name (fname
, r_name
, r_isdir
);
63 return no_such_backend (conttype
);
69 be_create_new_keys (int conttype
, membuf_t
*mb
)
74 return be_encfs_create_new_keys (mb
);
76 case CONTTYPE_TRUECRYPT
:
77 return be_truecrypt_create_new_keys (mb
);
80 return no_such_backend (conttype
);