Skip to content

Instantly share code, notes, and snippets.

View despiegk's full-sized avatar

kristof de spiegeleer despiegk

View GitHub Profile

European esignatures

Legislation: https://ec.europa.eu/cefdigital/wiki/display/CEFDIGITAL/What+is+the+legislation+-+esignature

Most important facts:

  • electronic documents cannot be denied legal effect solely because they are in electronic form
  • the introduction of electronic seals, available to legal persons, technologically similar to electronic signature and ensuring identity and integrity

Question:What does qualified means in the following statements?

  • qualified trust services across Europe
@jpillora
jpillora / sshd.go
Last active June 16, 2025 14:55
Go SSH server complete example - Read more here https://blog.gopheracademy.com/go-and-ssh/
// A small SSH daemon providing bash sessions
//
// Server:
// cd my/new/dir/
// #generate server keypair
// ssh-keygen -t rsa
// go get -v .
// go run sshd.go
//
// Client:
@koenbollen
koenbollen / punch.py
Created July 5, 2010 19:10
Proof of Concept: UDP Hole Punching
#!/usr/bin/env python
#
# Proof of Concept: UDP Hole Punching
# Two client connect to a server and get redirected to each other.
#
# This is the client.
#
# Koen Bollen <meneer koenbollen nl>
# 2010 GPL
#