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 | |
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 |
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
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? |