1*431955c1Schristos /* 2*431955c1Schristos * The Initial Developer of the Original Code is International 3*431955c1Schristos * Business Machines Corporation. Portions created by IBM 4*431955c1Schristos * Corporation are Copyright (C) 2005 International Business 5*431955c1Schristos * Machines Corporation. All Rights Reserved. 6*431955c1Schristos * 7*431955c1Schristos * This program is free software; you can redistribute it and/or modify 8*431955c1Schristos * it under the terms of the Common Public License as published by 9*431955c1Schristos * IBM Corporation; either version 1 of the License, or (at your option) 10*431955c1Schristos * any later version. 11*431955c1Schristos * 12*431955c1Schristos * This program is distributed in the hope that it will be useful, 13*431955c1Schristos * but WITHOUT ANY WARRANTY; without even the implied warranty of 14*431955c1Schristos * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15*431955c1Schristos * Common Public License for more details. 16*431955c1Schristos * 17*431955c1Schristos * You should have received a copy of the Common Public License 18*431955c1Schristos * along with this program; if not, a copy can be viewed at 19*431955c1Schristos * http://www.opensource.org/licenses/cpl1.0.php. 20*431955c1Schristos */ 21*431955c1Schristos 22*431955c1Schristos #ifndef __DATA_INIT_H 23*431955c1Schristos #define __DATA_INIT_H 24*431955c1Schristos 25*431955c1Schristos #define TOKEN_CLEAR_PROMPT _("Warning: The TPM token has already been initialized. " \ 26*431955c1Schristos "Reinitializing the TPM token will cause " \ 27*431955c1Schristos "all TPM token data to be lost.\n" \ 28*431955c1Schristos "Clear the TPM token data? [y/N]: ") 29*431955c1Schristos #define TOKEN_CLEAR_YES _("y") 30*431955c1Schristos #define TOKEN_CLEAR_NO _("n") 31*431955c1Schristos 32*431955c1Schristos #endif 33