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

📄 hmac_encryptor.h

📁 C++ web POSIX framewark
💻 H
字号:
#ifndef CPPCMS_HMAC_ENCRYPTOR_H#define CPPCMS_HMAC_ENCRYPTOR_H#include "encryptor.h"namespace cppcms {namespace hmac {class cipher : public encryptor {	void hash(unsigned char const *,size_t,unsigned char md5[16]);public:	virtual std::string encrypt(std::string const &plain,time_t timeout);	virtual bool decrypt(std::string const &cipher,std::string &plain,time_t *timeout=NULL);	cipher(std::string key);};} // hmac} // cppcms#endif

⌨️ 快捷键说明

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