Initial commit: PrivateBin API C++ DLL implementation

This commit is contained in:
2025-08-28 09:15:47 +02:00
commit 90d9a23dd2
21 changed files with 2053 additions and 0 deletions

15
tests/test_basic.cpp Normal file
View File

@ -0,0 +1,15 @@
#include "privatebinapi.h"
#include <iostream>
#include <cassert>
int main() {
// Test Base58 encoding/decoding
std::cout << "Testing Base58 encoding/decoding..." << std::endl;
// This is just a basic test to verify the API compiles and links
// In a real test, we would test actual functionality
std::cout << "API test completed successfully!" << std::endl;
return 0;
}