snmpksm.h

来自「net_snmp应用程序示例」· C头文件 代码 · 共 32 行

H
32
字号
/* * Header file for Kerberos Security Model support */#ifndef SNMPKSM_H#define SNMPKSM_H#ifdef __cplusplusextern          "C" {#endif    int             ksm_rgenerate_out_msg(struct                                          snmp_secmod_outgoing_params *);    int             ksm_process_in_msg(struct snmp_secmod_incoming_params                                       *);    void            init_usm(void);    /*     * This is the "key usage" that is used by the new crypto API.  It's used     * generally only if you are using derived keys.  The specifical says that     * 1024-2047 are to be used by applications, and that even usage numbers are     * to be used for encryption and odd numbers are to be used for checksums.     */#define KSM_KEY_USAGE_ENCRYPTION	1030#define KSM_KEY_USAGE_CHECKSUM		1031#ifdef __cplusplus}#endif#endif                          /* SNMPKSM_H */

⌨️ 快捷键说明

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