git clone https://github.com/distribution/distribution.git
cd distribution
go run cmd/registry/main.go serve config.yml
ICFF 2017
...as seen in Russia.
Bicycle (by Dana Sink)
Dust in the Chain (by Norbi Whitney)
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
/* | |
* lanauth client | |
* (c) visir | |
* "THE BEER-WARE LICENSE" (Revision 42): | |
* <[email protected]> wrote this file. As long as you retain this notice you | |
* can do whatever you want with this stuff. If we meet some day, and you think | |
* this stuff is worth it, you can buy me a beer in return. | |
* compile: gcc -O2 -Wall -s -lcrypto -o lanauth lanauth.c | |
* run: ./lanauth -p yourpassword | |
*/ |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdint.h> | |
#define ROUNDS 8 | |
#define ACTION_ENCRYPT "-e" | |
#define ACTION_DECRYPT "-d" | |
#define MODE_ECB "ecb" |