├── .gitignore ├── README.md ├── dist ├── index.d.ts ├── index.js ├── turnt.d.ts └── turnt.js ├── golang ├── build-linux.bat ├── build-macos.bat ├── build-windows.bat ├── common.go ├── go.mod ├── go.sum ├── goturnt.dll ├── goturnt.dylib ├── goturnt.h ├── goturnt.so └── main.go ├── package.json ├── src ├── index.ts └── turnt.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/turnt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/dist/turnt.d.ts -------------------------------------------------------------------------------- /dist/turnt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/dist/turnt.js -------------------------------------------------------------------------------- /golang/build-linux.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/build-linux.bat -------------------------------------------------------------------------------- /golang/build-macos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/build-macos.bat -------------------------------------------------------------------------------- /golang/build-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/build-windows.bat -------------------------------------------------------------------------------- /golang/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/common.go -------------------------------------------------------------------------------- /golang/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/go.mod -------------------------------------------------------------------------------- /golang/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/go.sum -------------------------------------------------------------------------------- /golang/goturnt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/goturnt.dll -------------------------------------------------------------------------------- /golang/goturnt.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/goturnt.dylib -------------------------------------------------------------------------------- /golang/goturnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/goturnt.h -------------------------------------------------------------------------------- /golang/goturnt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/goturnt.so -------------------------------------------------------------------------------- /golang/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/golang/main.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/turnt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/src/turnt.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HypePhilosophy/turnt-tls/HEAD/tsconfig.json --------------------------------------------------------------------------------