Skip to content

Instantly share code, notes, and snippets.

View jaelliot's full-sized avatar
🏠
Working from home

Jay-Alexander Elliot jaelliot

🏠
Working from home
View GitHub Profile
Is Vault resistant to attacks from quantum computers?
I've been researching vault lately, and I really like that it uses strong cryptography for it's core security mechanisms.
I want to learn more about this, because it's interesting to discuss and it may end up affecting many security systems in the future.
Is Vault resistant to attacks from quantum computer? I've been researching vault lately, and I really like that it uses strong cryptography for it's core security mechanisms. But I couldn't help but wonder, just how secure are those implementations? Can someone trick the TLS authentication, or brute force decrypt Vault's secrets with quantum encryption? If they can be brute force attacked, then could vault be rebuilt to resist quantum attacks?
@jaelliot
jaelliot / install_docker.sh
Created May 25, 2017 19:46 — forked from dpp/install_docker.sh
A script to install Docker on a minimal Ubuntu 16.04 machine
#!/bin/bash
apt-get update
apt-get install -y apt-transport-https ca-certificates
apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo 'deb https://apt.dockerproject.org/repo ubuntu-xenial main' > /etc/apt/sources.list.d/docker.list
apt-get update