├── .gitignore ├── .qmake.stash ├── Example ├── .gitignore ├── Example.pro └── main.cpp ├── LICENSE ├── NAuth.pro ├── NAuth ├── NAuth.pro ├── NAuth_inc.pri ├── NAuth_resource.rc ├── NAuth_src.pri ├── inc │ ├── liscenseobject.h │ ├── nauth.h │ ├── nauth_global.h │ └── nauthprotocol.h └── src │ ├── liscenseobject.cpp │ ├── nauth.cpp │ └── nauthprotocol.cpp ├── NComputerInfo ├── .gitignore ├── Example │ ├── Example.pro │ └── main.cpp ├── NComputerInfo.pro ├── NComputerInfo │ ├── 3rdparty │ │ ├── README.md │ │ ├── includepath │ │ │ └── getdiskinfo.h │ │ └── library │ │ │ └── getdiskinfo.dll │ ├── NComputerInfo.pro │ ├── NComputerInfo_inc.pri │ ├── NComputerInfo_resource.rc │ ├── NComputerInfo_src.pri │ ├── inc │ │ ├── ncomputerinfo.h │ │ └── ncomputerinfo_global.h │ └── src │ │ └── ncomputerinfo.cpp ├── README.md └── Scripts │ └── clear.bat ├── NConfig ├── .gitignore ├── AppCustomConfig │ ├── .gitignore │ ├── 3rdparty │ │ └── singleton │ │ │ ├── call_once.h │ │ │ ├── singleton.h │ │ │ └── singleton.pri │ ├── AppCustomConfig.pro │ ├── AppCustomConfig_inc.pri │ ├── inc │ │ └── appcustomconfig.h │ └── src │ │ ├── appcustomconfig.cpp │ │ └── main.cpp ├── NConfig.pro ├── NConfig │ ├── 3rdparty │ │ ├── wxsqlite3 │ │ │ ├── codec.c │ │ │ ├── codec.h │ │ │ ├── codecext.c │ │ │ ├── rijndael.c │ │ │ ├── rijndael.h │ │ │ ├── sha2.c │ │ │ ├── sha2.h │ │ │ ├── sqlite3.c │ │ │ ├── sqlite3.h │ │ │ ├── sqlite3secure.c │ │ │ └── wxsqlite3.pri │ │ └── zsqlitecipherdriver │ │ │ ├── zsqliteciphercachedresult.cpp │ │ │ ├── zsqliteciphercachedresult.h │ │ │ ├── zsqlitecipherdriver.cpp │ │ │ ├── zsqlitecipherdriver.h │ │ │ └── zsqlitecipherdriver.pri │ ├── NConfig.pro │ ├── NConfig_inc.pri │ ├── NConfig_resource.rc │ ├── NConfig_src.pri │ ├── inc │ │ ├── nconfig.h │ │ └── nconfig_global.h │ └── src │ │ └── nconfig.cpp ├── README.md ├── example │ ├── .gitignore │ ├── example.pro │ └── main.cpp └── scripts │ ├── clear.bat │ └── sqlite3shell.exe ├── NEncryptionKit ├── .gitignore ├── Example │ ├── .gitignore │ ├── Example.pro │ └── main.cpp ├── NEncryptionKit.pro ├── NEncryptionKit │ ├── 3rdparty │ │ └── botan │ │ │ ├── botan.cpp │ │ │ ├── botan.h │ │ │ ├── botan.pri │ │ │ ├── configure.py │ │ │ ├── doc │ │ │ └── license.txt │ │ │ └── readme.txt │ ├── NEncryptionKit.pro │ ├── NEncryptionKit_inc.pri │ ├── NEncryptionKit_resource.rc │ ├── NEncryptionKit_src.pri │ ├── inc │ │ ├── nencryptionkit.h │ │ └── nencryptionkit_global.h │ └── src │ │ └── nencryptionkit.cpp ├── README.md └── Scripts │ └── clear.bat ├── README.md ├── Scripts ├── arch.png ├── clear.bat ├── pro_arch.bmpr └── 鉴权流程.png └── _config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/.gitignore -------------------------------------------------------------------------------- /.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/.qmake.stash -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/Example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Example/Example.pro -------------------------------------------------------------------------------- /Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Example/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/LICENSE -------------------------------------------------------------------------------- /NAuth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth.pro -------------------------------------------------------------------------------- /NAuth/NAuth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/NAuth.pro -------------------------------------------------------------------------------- /NAuth/NAuth_inc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/NAuth_inc.pri -------------------------------------------------------------------------------- /NAuth/NAuth_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/NAuth_resource.rc -------------------------------------------------------------------------------- /NAuth/NAuth_src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/NAuth_src.pri -------------------------------------------------------------------------------- /NAuth/inc/liscenseobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/inc/liscenseobject.h -------------------------------------------------------------------------------- /NAuth/inc/nauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/inc/nauth.h -------------------------------------------------------------------------------- /NAuth/inc/nauth_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/inc/nauth_global.h -------------------------------------------------------------------------------- /NAuth/inc/nauthprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/inc/nauthprotocol.h -------------------------------------------------------------------------------- /NAuth/src/liscenseobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/src/liscenseobject.cpp -------------------------------------------------------------------------------- /NAuth/src/nauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/src/nauth.cpp -------------------------------------------------------------------------------- /NAuth/src/nauthprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NAuth/src/nauthprotocol.cpp -------------------------------------------------------------------------------- /NComputerInfo/.gitignore: -------------------------------------------------------------------------------- 1 | /NComputerInfo.pro.user 2 | /.qmake.stash 3 | -------------------------------------------------------------------------------- /NComputerInfo/Example/Example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/Example/Example.pro -------------------------------------------------------------------------------- /NComputerInfo/Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/Example/main.cpp -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo.pro -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/3rdparty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/3rdparty/README.md -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/3rdparty/includepath/getdiskinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/3rdparty/includepath/getdiskinfo.h -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/3rdparty/library/getdiskinfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/3rdparty/library/getdiskinfo.dll -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/NComputerInfo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/NComputerInfo.pro -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/NComputerInfo_inc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/NComputerInfo_inc.pri -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/NComputerInfo_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/NComputerInfo_resource.rc -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/NComputerInfo_src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/NComputerInfo_src.pri -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/inc/ncomputerinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/inc/ncomputerinfo.h -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/inc/ncomputerinfo_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/inc/ncomputerinfo_global.h -------------------------------------------------------------------------------- /NComputerInfo/NComputerInfo/src/ncomputerinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/NComputerInfo/src/ncomputerinfo.cpp -------------------------------------------------------------------------------- /NComputerInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/README.md -------------------------------------------------------------------------------- /NComputerInfo/Scripts/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NComputerInfo/Scripts/clear.bat -------------------------------------------------------------------------------- /NConfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/.gitignore -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/.gitignore -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/3rdparty/singleton/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/3rdparty/singleton/call_once.h -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/3rdparty/singleton/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/3rdparty/singleton/singleton.h -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/3rdparty/singleton/singleton.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/3rdparty/singleton/singleton.pri -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/AppCustomConfig.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/AppCustomConfig.pro -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/AppCustomConfig_inc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/AppCustomConfig_inc.pri -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/inc/appcustomconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/inc/appcustomconfig.h -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/src/appcustomconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/src/appcustomconfig.cpp -------------------------------------------------------------------------------- /NConfig/AppCustomConfig/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/AppCustomConfig/src/main.cpp -------------------------------------------------------------------------------- /NConfig/NConfig.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig.pro -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/codec.c -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/codec.h -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/codecext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/codecext.c -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/rijndael.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/rijndael.c -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/rijndael.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/rijndael.h -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/sha2.c -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/sha2.h -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/sqlite3.c -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/sqlite3.h -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/sqlite3secure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/sqlite3secure.c -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/wxsqlite3/wxsqlite3.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/wxsqlite3/wxsqlite3.pri -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqliteciphercachedresult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqliteciphercachedresult.cpp -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqliteciphercachedresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqliteciphercachedresult.h -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqlitecipherdriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqlitecipherdriver.cpp -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqlitecipherdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqlitecipherdriver.h -------------------------------------------------------------------------------- /NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqlitecipherdriver.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/3rdparty/zsqlitecipherdriver/zsqlitecipherdriver.pri -------------------------------------------------------------------------------- /NConfig/NConfig/NConfig.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/NConfig.pro -------------------------------------------------------------------------------- /NConfig/NConfig/NConfig_inc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/NConfig_inc.pri -------------------------------------------------------------------------------- /NConfig/NConfig/NConfig_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/NConfig_resource.rc -------------------------------------------------------------------------------- /NConfig/NConfig/NConfig_src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/NConfig_src.pri -------------------------------------------------------------------------------- /NConfig/NConfig/inc/nconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/inc/nconfig.h -------------------------------------------------------------------------------- /NConfig/NConfig/inc/nconfig_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/inc/nconfig_global.h -------------------------------------------------------------------------------- /NConfig/NConfig/src/nconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/NConfig/src/nconfig.cpp -------------------------------------------------------------------------------- /NConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/README.md -------------------------------------------------------------------------------- /NConfig/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/example/.gitignore -------------------------------------------------------------------------------- /NConfig/example/example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/example/example.pro -------------------------------------------------------------------------------- /NConfig/example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/example/main.cpp -------------------------------------------------------------------------------- /NConfig/scripts/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/scripts/clear.bat -------------------------------------------------------------------------------- /NConfig/scripts/sqlite3shell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NConfig/scripts/sqlite3shell.exe -------------------------------------------------------------------------------- /NEncryptionKit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/.gitignore -------------------------------------------------------------------------------- /NEncryptionKit/Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/Example/.gitignore -------------------------------------------------------------------------------- /NEncryptionKit/Example/Example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/Example/Example.pro -------------------------------------------------------------------------------- /NEncryptionKit/Example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/Example/main.cpp -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit.pro -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/3rdparty/botan/botan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/3rdparty/botan/botan.cpp -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/3rdparty/botan/botan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/3rdparty/botan/botan.h -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/3rdparty/botan/botan.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/3rdparty/botan/botan.pri -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/3rdparty/botan/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/3rdparty/botan/configure.py -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/3rdparty/botan/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/3rdparty/botan/doc/license.txt -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/3rdparty/botan/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/3rdparty/botan/readme.txt -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/NEncryptionKit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/NEncryptionKit.pro -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/NEncryptionKit_inc.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/NEncryptionKit_inc.pri -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/NEncryptionKit_resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/NEncryptionKit_resource.rc -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/NEncryptionKit_src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/NEncryptionKit_src.pri -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/inc/nencryptionkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/inc/nencryptionkit.h -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/inc/nencryptionkit_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/inc/nencryptionkit_global.h -------------------------------------------------------------------------------- /NEncryptionKit/NEncryptionKit/src/nencryptionkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/NEncryptionKit/src/nencryptionkit.cpp -------------------------------------------------------------------------------- /NEncryptionKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/README.md -------------------------------------------------------------------------------- /NEncryptionKit/Scripts/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/NEncryptionKit/Scripts/clear.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Scripts/arch.png -------------------------------------------------------------------------------- /Scripts/clear.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Scripts/clear.bat -------------------------------------------------------------------------------- /Scripts/pro_arch.bmpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Scripts/pro_arch.bmpr -------------------------------------------------------------------------------- /Scripts/鉴权流程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/Scripts/鉴权流程.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daodaoliang/NAuth/HEAD/_config.yml --------------------------------------------------------------------------------