WindTerm/src
2020-08-28 14:47:23 +08:00
..
Onigmo Add iterator to search gap buffer and wildcard matching, whole word matching. 2020-07-17 03:24:41 +08:00
Protocols Add an implementation of Telnet protocol 2020-08-24 15:11:57 +08:00
Pty Add WinPty and ConPty 2020-08-24 14:47:21 +08:00
Utility Add a high-performance thread local storage class. 2020-08-28 14:47:23 +08:00
CircularBuffer.h Add a quick circular buffer class. 2020-07-28 01:38:01 +08:00
Cryptographic.cpp Add a safe encryption class. 2020-07-28 02:05:46 +08:00
Cryptographic.h Add a safe encryption class. 2020-07-28 02:05:46 +08:00
LICENSE Update license 2020-07-17 12:28:59 +08:00
README.md Add a high-performance thread local storage class. 2020-08-28 14:47:23 +08:00
ScopeGuard.h Add a scope guard template class. 2020-07-28 01:47:29 +08:00
Spin.h Add a high-performance spin mutex class. 2020-07-28 01:43:10 +08:00

All source codes (except thirdparty directory) are provided under the terms of Apache-2.0 license.

Components

Below is a list of (some) WindTerm components in alphabetical order, along with a brief description of each.

CircularBuffer.h

A quick circular buffer template class.

Cryptographic.h/cpp

A very safe encryption class using the PBKDF2-algorithm as defined in RFC 8018. WindTerm uses this class together with the user's master password to protect user data, including passwords, private keys and so on.

Onigmo

An improved version based on Onigmo 5.13.5. In particular, the addition of iterator makes it possible to match gap buffer or nonadjacent memory blocks. Please refer to the sample files for how to use.

Pty

An improved version based on ptyqt. Almost all the code was rewritten to make the pty more robust and stable.

ScopeGuard.h

A class of which the sole purpose is to run the function f in its destructor. This is useful for guaranteeing your cleanup code is executed.

Spin.h

A high-performance spin mutex and locker.

Protocol/TelentProtocol.h/cpp

An implementation of Telnet protocol.

Utility/ThreadLocal.h/cpp

A high-performance thread local storage.