📄 hmacsha1.hh
字号:
#ifndef CLICK_IPSECAUTHHMACSHA1_HH#define CLICK_IPSECAUTHHMACSHA1_HH#include <click/element.hh>#include <click/atomic.hh>#include <click/glue.hh>CLICK_DECLS/* * =c * IPsecAuthHMACSHA1(VERIFY) * =s ipsec * verify SHA1 authentication digest. * =d * * If first argument is 0, computes SHA1 authentication digest for ESP packet * per RFC 2404, 2406. If first argument is 1, verify SHA1 digest and remove * authentication bits. * * =a IPsecESPEncap, IPsecDES */class IPsecAuthHMACSHA1 : public Element {public: IPsecAuthHMACSHA1(); ~IPsecAuthHMACSHA1(); const char *class_name() const { return "IPsecAuthHMACSHA1"; } const char *port_count() const { return "1/-"; } const char *processing() const { return AGNOSTIC; } int configure(Vector<String> &, ErrorHandler *); int initialize(ErrorHandler *); Packet *simple_action(Packet *); void add_handlers(); static String drop_handler(Element *e, void *thunk);private: int _op; atomic_uint32_t _drops; enum { COMPUTE_AUTH = 0, VERIFY_AUTH = 1 };};CLICK_ENDDECLS#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -