View Screen Shots
This file contains 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
Instrument Plugins: | |
https://user-images.githubusercontent.com/4927823/85950622-e5cff480-b998-11ea-8689-b41ea1195475.PNG | |
My Presets: | |
https://user-images.githubusercontent.com/4927823/85950692-42cbaa80-b999-11ea-8704-1be8d0044744.PNG | |
Loading demos: | |
https://user-images.githubusercontent.com/4927823/85950716-76a6d000-b999-11ea-8b02-9ff2f0418f56.PNG |
View posix_win.c
This file contains 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
/* | |
* Public domain | |
* | |
* BSD socket emulation code for Winsock2 | |
* File IO compatibility shims | |
* Brent Cook <bcook@openbsd.org> | |
* Kinichiro Inoguchi <inoguchi@openbsd.org> | |
*/ | |
#define NO_REDEF_POSIX_FUNCTIONS |
View b64tv.pl
This file contains 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
#!/usr/bin/perl | |
my $infile = $ARGV[0]; | |
my $num, $comment, $encoding, $input, $output; | |
my $inlen, $outlen, $validlen; | |
open(IN, "< $infile") || die "open"; | |
$num = 0; | |
while (<IN>) { |
View mttest.c
This file contains 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
/* mttest.c */ | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <errno.h> | |
#ifndef _WIN32 | |
#include <pthread.h> | |
#else | |
#include <windows.h> |
View pwrite_pread.c
This file contains 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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <err.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#define FILENAME "pwrite_pread.dat" | |
void test_pwrite() |
View ocsptest.sh
This file contains 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
#!/bin/sh | |
# | |
# ocsptest.sh - test script | |
# | |
openssl_bin=/usr/local/bin/openssl | |
function section_message { | |
echo "" | |
echo "#---------#---------#---------#---------#---------#---------#---------#--------" |
View tls_debug.c
This file contains 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 <time.h> | |
#include <sys/time.h> | |
#include <openssl/bio.h> | |
#include <openssl/ssl.h> | |
#include <tls.h> | |
#include "tls_internal.h" | |
#define TLS_DEBUG_LOG_LEVEL_NONE 0 | |
#define TLS_DEBUG_LOG_LEVEL_MSG_ONLY 1 | |
#define TLS_DEBUG_LOG_LEVEL_MSG_WITH_DUMP 2 |
View 1_Hello_libtls
This file contains 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
Hello libtls - libressl libtls API sample program |
View README_image_macro.txt
This file contains 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 script fixes fuzzing caused by change of image: -> image::. | |
Search "#. type: Target for macro image" or | |
"#. type: Named 'alt' AttributeList argument for macro 'image'" | |
from po file, and set proper string to msgstr. | |
Usage: | |
image_macro.pl <lang> | |
To run: |
View testscript.sh
This file contains 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
#!/bin/sh | |
openssl_bin=../apps/openssl/.libs/openssl | |
function section_message { | |
echo "" | |
echo "#---------#---------#---------#---------#---------#---------#---------#--------" | |
echo "===" | |
echo "=== (Section) $1 `date +'%Y/%m/%d %H:%M:%S'`" | |
echo "===" |
NewerOlder