├── .gitignore ├── LICENSE ├── LicenseUtils ├── cpp │ ├── NLisence.cpp │ ├── RegisterSave.cpp │ ├── base64.cpp │ └── computerID.cpp └── h │ ├── NLisence.h │ ├── RegisterSave.h │ ├── base64.h │ └── computerID.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LICENSE -------------------------------------------------------------------------------- /LicenseUtils/cpp/NLisence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/cpp/NLisence.cpp -------------------------------------------------------------------------------- /LicenseUtils/cpp/RegisterSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/cpp/RegisterSave.cpp -------------------------------------------------------------------------------- /LicenseUtils/cpp/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/cpp/base64.cpp -------------------------------------------------------------------------------- /LicenseUtils/cpp/computerID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/cpp/computerID.cpp -------------------------------------------------------------------------------- /LicenseUtils/h/NLisence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/h/NLisence.h -------------------------------------------------------------------------------- /LicenseUtils/h/RegisterSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/h/RegisterSave.h -------------------------------------------------------------------------------- /LicenseUtils/h/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/h/base64.h -------------------------------------------------------------------------------- /LicenseUtils/h/computerID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/LicenseUtils/h/computerID.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vladimir-Novick/Get-License-Code/HEAD/README.md --------------------------------------------------------------------------------