X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcryptsetup.h;h=c9a40b8cedfc38bc1df4ac825550e669ba28c58c;hb=209f1db98499127f083e8c8628627e039ca0ffbc;hp=3bc288ed4f8f6bdf89ec12d5fa2cdadfd3d88502;hpb=710aad20d338bf8124b8daecb821fcf6a5f55d14;p=platform%2Fupstream%2Fcryptsetup.git diff --git a/src/cryptsetup.h b/src/cryptsetup.h index 3bc288e..c9a40b8 100644 --- a/src/cryptsetup.h +++ b/src/cryptsetup.h @@ -4,10 +4,12 @@ * Copyright (C) 2004, Christophe Saout * Copyright (C) 2004-2007, Clemens Fruhwirth * Copyright (C) 2009-2012, Red Hat, Inc. All rights reserved. + * Copyright (C) 2009-2012, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License - * version 2 as published by the Free Software Foundation. + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -56,6 +58,7 @@ extern int opt_debug; extern int opt_verbose; extern int opt_batch_mode; +extern int opt_force_password; /* Common tools */ void clogger(struct crypt_device *cd, int level, const char *file, int line, @@ -72,7 +75,16 @@ int translate_errno(int r); extern volatile int quit; void set_int_block(int block); -void set_int_handler(void); +void set_int_handler(int block); +void check_signal(int *r); +int tools_signals_blocked(void); + +int tools_get_key(const char *prompt, + char **key, size_t *key_size, + size_t keyfile_offset, size_t keyfile_size_max, + const char *key_file, + int timeout, int verify, int pwquality, + struct crypt_device *cd); /* Log */ #define log_dbg(x...) clogger(NULL, CRYPT_LOG_DEBUG, __FILE__, __LINE__, x)