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

📄 s2k.cpp

📁 含有多种公开密钥算法、多种块加密、多种数据流加密、多种HASH函数、多种CheckSum校验、多种MAC校验等几十种加密算法的程序
💻 CPP
字号:
/************************************************** S2K Base Class Source File                     ** (C) 1999-2002 The Botan Project                **************************************************/#include <botan/s2k.h>#include <botan/rng.h>namespace Botan {/************************************************** Set the number of iterations                   **************************************************/void S2K::set_iterations(u32bit i)   {   if(can_change_iterations())      iter = i;   else      throw Exception("S2K: Iteration count cannot be set by this S2K method");   }/************************************************** Change the salt                                **************************************************/void S2K::change_salt(const byte new_salt[], u32bit length)   {   salt.create(length);   salt.copy(new_salt, length);   }/************************************************** Change the salt                                **************************************************/void S2K::change_salt(const SecureVector<byte>& new_salt)   {   change_salt(new_salt.ptr(), new_salt.size());   }/************************************************** Create a new random salt                       **************************************************/void S2K::new_random_salt(u32bit length)   {   salt.create(length);   Global_RNG::randomize(salt, length);   }}

⌨️ 快捷键说明

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