poc.h
来自「在卡片上管理密码的工具。密码被标注并集体加密存储在卡片上。因此这是一个安全存储密」· C头文件 代码 · 共 50 行
H
50 行
/* * GNU POC (passwords on card) - manage passwords on smartcards * Copyright (C) 2001 Henning Koester <henning@crackinghacking.de> * * Please report bugs to bug-poc@gnu.org * * This file is part of POC. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License 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 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *//* $Id: poc.h,v 1.5 2001/08/18 16:16:31 henning Exp $ */#ifndef _POC_H_#define _POC_H_#include "poc_types.h"/* max. length of the description */#define DESCR_LENGTH 30/* Security levels */#define SL_NORMAL 1#define SL_HIGH 2/* Environment settings. */#define ENV_CIPHER "POC_CIPHER"#define ENV_SL "POC_SL"/* commandline options */extern bool verbose_flg;#define POC_SUCCESS 0#define POC_ERROR 1#define POC_MEM_ERR 2#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?