MPV, youtube-dl and web browsers
cp /usr/share/applications/mpv.desktop ~/.local/share/applications/mpvv.desktop
cp /usr/share/applications/mpv.desktop ~/.local/share/applications/mpvv.desktop
Pairings can be used for all kinds of advanced cryptographic schemes such as Encryption (Identity-based, Attribute-based, Predicate-based, etc.), Signatures, Zero-Knowledge Proofs, etc. It is in no particular order.
Provides multiple types of Elliptic Curve groups with appropriate pairings on top of them. Code repository resides here.
License: LGPL
Language: C
Thesis: On the Implementation of Pairing-Based Cryptography by Ben Lynn (2007)
| from ws4py.client.geventclient import WebSocketClient | |
| from event_dispatching import EventEmitter | |
| from app.setup_event_loop import start_event_loop | |
| from app.setup_app_logging import setup_logging | |
| from gevent.event import Event | |
| import gevent | |
| import signal | |
| import copy | |
| import sys |
| From 7de920fa11c2d2d9667968bd3478eaefd563741f Mon Sep 17 00:00:00 2001 | |
| From: Pierre-Antoine Rault <par@rigelk.eu> | |
| Date: Fri, 13 Jan 2017 17:01:49 +0100 | |
| Subject: [PATCH] improved doc/HelpfulTools.md on profiling Tor | |
| --- | |
| doc/HACKING/HelpfulTools.md | 55 +++++++++++++++++++++++++++++++++++++++++++++ | |
| 1 file changed, 55 insertions(+) | |
| diff --git a/doc/HACKING/HelpfulTools.md b/doc/HACKING/HelpfulTools.md |
| From 28ca8cd283095614d65ab9acfc1afe57c1965e57 Mon Sep 17 00:00:00 2001 | |
| From: Pierre-Antoine Rault <par@rigelk.eu> | |
| Date: Mon, 28 Nov 2016 01:28:26 +0100 | |
| Subject: [PATCH] fixes #41 deprecated readdir_r | |
| * src/hakactl/console.c (initialize_console): readdir_r is removed in favor of POSIX.1-2008-compliant readdir, mainly to support glibc >= glibc-2.24 (released Aug 5, 2016). | |
| --- | |
| src/hakactl/console.c | 23 ++++++++++++----------- | |
| 1 file changed, 12 insertions(+), 11 deletions(-) |
| #!/bin/bash | |
| # Wordpress dev env installer for dummies. | |
| command_exists() { | |
| command -v "$@" > /dev/null 2>&1 | |
| } | |
| user="$(id -un 2>/dev/null || true)" | |
| sh_c='sh -c' |
| #!/bin/bash | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: $(basename $0) [build-args [-- run-args [-- cmd-args] ] ]" | |
| echo " NOTE: the -rm-flag is hardcoded for build!" | |
| exit 1 | |
| fi | |
| BUILD_ARG=() | |
| RUN_ARG=() |
| TEXFILES = $(wildcard *.tex) | |
| PDFFILES = $(TEXFILES:.tex=.pdf) | |
| all: pdf | |
| pdf: $(PDFFILES) | |
| %.pdf: %.tex | |
| @rubber --pdf $< | |
| clean: |