📄 emsa_raw.cpp
字号:
/************************************************** EMSA-Raw Source File ** (C) 1999-2002 The Botan Project **************************************************/#include <botan/emsa_raw.h>namespace Botan {/************************************************** EMSA-Raw Encode Operation **************************************************/void EMSA_Raw::update(const byte input[], u32bit length) { message.append(input, length); }/************************************************** Return the raw (unencoded) data **************************************************/SecureVector<byte> EMSA_Raw::raw_data() { SecureVector<byte> buf(message, message.size()); message.destroy(); return buf; }/************************************************** EMSA-Raw Encode Operation **************************************************/SecureVector<byte> EMSA_Raw::encoding_of(const SecureVector<byte>& msg, u32bit) { return msg; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -