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
| d |
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
| #include "windows.h" | |
| #include "wincrypt.h" | |
| #include "stdio.h" | |
| /* This code example: | |
| 1) creates a Crypto Service Provider | |
| 2) generates keys | |
| 3) extracts public key | |
| 4) exports private key into PEM |
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
| #include "Agui/Clipboard/XClipboard.hpp" | |
| #include <X11/Xatom.h> | |
| #include <stdio.h> | |
| #include <sys/select.h> | |
| #include <unistd.h> | |
| #include <assert.h> | |
| #include <algorithm> | |
| #include <iostream> | |
| // Most of the code here is adapted from the example at |
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
| /* =============================================================== | |
| * SDEFL | |
| * =============================================================== | |
| * public domain - no warranty implied; use at your own risk | |
| * References: | |
| https://bitbucket.org/rmitton/tigr/src/be3832bee7fb2f274fe5823e38f8ec7fa94e0ce9/src/tigr_inflate.c?at=default&fileviewer=file-view-default | |
| https://github.com/github/putty/blob/49fb598b0e78d09d6a2a42679ee0649df482090e/sshzlib.c | |
| https://www.ietf.org/rfc/rfc1951.txt | |
| */ | |
| #include <stdlib.h> |