标签(空格分隔): 密码学
本文介绍目前现代密码学的最先进技术, 前半部分主要翻译自 《Cryptographic Right Answers》 ,附上收集的资料,和byron个人的理解。
| /** | |
| * xClip (Reverse Clip) for Windows | |
| * Author: Abhishek Bhattacharya <[email protected]> | |
| * | |
| * Build Environment: | |
| * Windows 10 Version 1607 (Windows 7 or above should work fine) | |
| * MinGW g++ (GCC) 5.3.0 or above (with flag --std=c++11) | |
| * UPX x3.91 or above | |
| * Runtime Environment: | |
| * Windows 7 or above |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@ Reversing Steam CEG Protection @@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@ by Push_BirthDay_Ret @@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
标签(空格分隔): 密码学
本文介绍目前现代密码学的最先进技术, 前半部分主要翻译自 《Cryptographic Right Answers》 ,附上收集的资料,和byron个人的理解。
| cmake_minimum_required( VERSION 3.6 ) | |
| # Create Project | |
| project( test ) | |
| add_executable( freetype main.cpp ) | |
| # Set StartUp Project | |
| set_property( DIRECTORY PROPERTY VS_STARTUP_PROJECT "freetype" ) | |
| # Set CharacterSet |
| #include <tchar.h> | |
| #include <windows.h> | |
| // The known values for NOTIFYITEM's dwPreference member. | |
| enum NOTIFYITEM_PREFERENCE | |
| { | |
| // In Windows UI: "Only show notifications." | |
| PREFERENCE_SHOW_WHEN_ACTIVE = 0, | |
| // In Windows UI: "Hide icon and notifications." | |
| PREFERENCE_SHOW_NEVER = 1, |
| /* | |
| * Based on Bluebird 3.4.1 | |
| */ | |
| (function() { | |
| var Promise = window.Promise; | |
| var promiseProto = Promise.prototype; | |
| if (typeof Promise.mapSeries !== "function") { | |
| return; // Bluebird not loaded | |
| } | |