nonce.h

来自「一个windows上的加解密程式 提供方便的介面让使用者操作」· C头文件 代码 · 共 38 行

H
38
字号
/*             Nonces for the Gaim encryption plugin                      *//*            Copyright (C) 2001-2003 William Tompkins                    *//* This plugin is free software, distributed under the GNU General Public *//* License.                                                               *//* Please see the file "COPYING" distributed with the Gaim source code    *//* for more details                                                       *//*                                                                        *//*                                                                        *//*    This software 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.                             *//*   To compile and use:                                                  *//*     See INSTALL file.                                                  */#ifndef NONCE_H#define NONCE_H#include "glib.h"typedef unsigned char Nonce[24];void GE_nonce_map_init();void GE_str_to_nonce(Nonce* nonce, unsigned char* nonce_str);gchar* GE_nonce_to_str(Nonce* nonce);void GE_incr_nonce(Nonce* nonce);gchar* GE_new_incoming_nonce(const char* name);int GE_check_incoming_nonce(const char* name, char* nonce_str);int GE_nonce_str_len();#endif

⌨️ 快捷键说明

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