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

📄 iscsi-auth.h

📁 ISCSI user client software.Client would be used to access the IPSAN server.
💻 H
字号:
/* * iSCSI driver for Linux * Copyright (C) 2001 Cisco Systems, Inc. * maintained by linux-iscsi-devel@lists.sourceforge.net * * 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. * * See the file COPYING included with this distribution for more details. * * $Id: iscsi-auth.h,v 1.5 2004/11/30 20:13:15 mikenc Exp $ * */#ifndef ISCSI_AUTH_H#define ISCSI_AUTH_H#include <sys/types.h>#include "md5.h"	extern void auth_md5_init(struct MD5Context *);extern void auth_md5_update(struct MD5Context *, unsigned char *,				    unsigned int);extern void auth_md5_final(unsigned char *, struct MD5Context *);extern void get_random_bytes(unsigned char *data, unsigned int length);extern size_t strlcpy(char *, const char *, size_t);extern size_t strlcat(char *, const char *, size_t);#endif

⌨️ 快捷键说明

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