This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
internal class Program | |
{ | |
private static Test test; | |
static void Main(string[] args) | |
{ | |
Task.Run(() => | |
{ | |
while (true) | |
{ | |
Test localTest = test; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Data.SQLite; | |
using System.Diagnostics; | |
namespace SQLReader | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Cryptography2 | |
{ | |
private ECPrivateKeyParameters privateKey; | |
private ECPublicKeyParameters publicKey; | |
private ECDomainParameters ecDomainParameters; | |
private ECCurve ecurve; | |
private const byte INFO_PARAMETER_DELIMITER = 0; | |
// CEK_INFO = "Content-Encoding: aesgcm" || 0x00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This cmake scripts only builds a static cld3 lib and the unittests. | |
cmake_policy(SET CMP0091 NEW) | |
project(cld3) | |
# Old versions of cmake dont search/find protobuf lite | |
cmake_minimum_required(VERSION 3.9) | |
set (Protobuf_INCLUDE_DIR "C:/protobuf/protobuf-3.9.0/src") | |
set (Protobuf_LIBRARIES "C:/protobuf/protobuf-3.9.0/cmake/build/solution/Release") | |
set (Protobuf_LITE_LIBRARIES "C:/protobuf/protobuf-3.9.0/cmake/build/solution/Release") |