addent.h
来自「伯克利做的SFTP安全文件传输协议」· C头文件 代码 · 共 21 行
H
21 行
// addent.h// module for manually adding entropy to the system// copyright SafeTP Development Group, Inc., 2000 Terms of use are as specified in license.txt#ifndef __ADDENT_H#define __ADDENT_H// (other utilities that were declared here have been moved// to nonport.h)// complete routine: prompt the user, then retrieve 'numbits'// of entropy from the user typing at the keyboard// (may call getEntropyFromSystem instead of requiring typing)void getEntropyFromConsole(int numbits);// get it from /dev/randomvoid getEntropyFromSystem(int numbits);#endif // __ADDENT_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?