vmprotect
Wrapper for VMProtect SDK
Wraps a native library — check OS Compatibility below for platform-specific linking notes.
Summary
| Latest Version | 0.1.1 |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-09-01 07:17 |
Tags
Authors
- Huy Doan
Installation
nimble install vmprotect
choosenim install vmprotect
git clone https://github.com/ba0f3/vmprotect.nim
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| vmprotect | ✓ | ✓ | ✓ | - | - | - | - | - | - | - |
Dependencies
| Package | Version | Optional |
|---|---|---|
| nim >= | 1.2.0 | No |
Source
| Repository | https://github.com/ba0f3/vmprotect.nim |
|---|---|
| Homepage | https://github.com/ba0f3/vmprotect.nim |
| Registry Source | nimble_official |
README
vmprotect.nim
Wrapper for VMProtect SDK
This module supports: - Windows (not tested yet) - MinGW - Linux - OSX (not tested yet)
Notes: - For Linux users, make sure you have libVMProjectXX.so in your LD_LIBRARY_PATH in development environent (its not needed when protected)
Usage
import vmprotect
proc toBeProtected() =
VMProtectBeginUltra("MarkerName")
# your code goes here
VMProtectEnd()
Check out VMProtect's SDK Functions for more details