⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.h

📁 SecuDe是一个由安全应用程序接口组成,对验证机制、证件处理、PEM、X.400报文处理和密钥管理提供支持。SecuDe提供DES、 RSA杂凑函数、密钥生成以及数字签名的生成和核实等多种密码机制。
💻 H
字号:
/* list.h - *//* * $Header: /xtel/isode/isode/h/quipu/RCS/list.h,v 9.0 1992/06/16 12:23:11 isode Rel $ * * * $Log: list.h,v $ * Revision 9.0  1992/06/16  12:23:11  isode * Release 8.0 * *//* *				  NOTICE * *    Acquisition, use, and distribution of this module and related *    materials are subject to the restrictions of a license agreement. *    Consult the Preface in the User's Manual for the full terms of *    this agreement. * */#ifndef QUIPULIST#define QUIPULIST#include "quipu/commonarg.h"#include "quipu/ds_error.h"#include "quipu/dap.h"struct ds_list_arg {    CommonArgs lsa_common;    DN lsa_object;};/*.VE.VS*/struct subordinate {    RDN sub_rdn;    char sub_aliasentry;        /* set to TRUE or FALSE                 */    char sub_copy;              /* set to TRUE or FALSE                 */    struct subordinate *sub_next;};#define NULLSUBORD (struct subordinate *) NULLstruct subordinate	* subord_comp_new();/*.VE.VS*/struct ds_list_result {    CommonResults lsr_common;    DN lsr_object;    time_t lsr_age;    struct subordinate *lsr_subordinates;    POQ	   lsr_poq;#define lsr_limitproblem lsr_poq.poq_limitproblem#define lsr_cr lsr_poq.poq_cref    struct ds_list_result * lsr_next;};				/* Note uncorrelated will need to be    */				/* added in to do the secure stuff      */				/* in a distributed manner              */				/* this also applies to search          */struct list_cache {	DN              list_dn;	struct subordinate *list_subs;	struct subordinate *list_sub_top;	int             list_count;	int             list_problem;	struct list_cache *list_next;};#define NULLCACHE (struct list_cache *) NULLstruct list_cache *find_list_cache ();#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -