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
#!/bin/bash | |
set -ex | |
mkdir $1 | |
cd $1 | |
cat >index.html <<HTML | |
<h1>Index</h1> | |
<ul> | |
<li><a href=file-1M>1 MB file</a> | |
<li><a href=file-10M>10 MB</a> | |
<li><a href=file-100M>100 MB file</a> |
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
### Keybase proof | |
I hereby claim: | |
* I am dtikhonov on github. | |
* I am dtikhonov (https://keybase.io/dtikhonov) on keybase. | |
* I have a public key ASCb76WGQSQva7MYF4sUN5lnXZLNnMfG5iMbHY9vYGswCAo | |
To claim this, I am signing this object: |
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
/* Compile as follows: | |
* gcc -o tom-de-decker -Wall tom-de-decker.c libls-qpack.a | |
*/ | |
#include <stdio.h> | |
#include "lsqpack.h" | |
int | |
main (void) |
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
/* Test whether CTR and ECB produce the same HP mask */ | |
#include <inttypes.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <openssl/evp.h> | |
#include <openssl/ssl.h> |