TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Crypt – Secure Configuration Storage in Etcd or Consul

69 pointsby bketelsenover 10 years ago

6 comments

lsbover 10 years ago
"After encryption it is gzipped" is a red flag. After encryption it should be noise, why try to compress it?
评论 #8483477 未加载
philipsover 10 years ago
As another point of reference an HTTP load balancer that mailgun built and uses, called vulcan[1], uses secretbox[2] to encrypt secrets into etcd. There are no good docs on how to use this in practice with vulcanctl so I will need need to ask them to document that :)<p>[1] <a href="https://github.com/mailgun/vulcand" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mailgun&#x2F;vulcand</a><p>[2] <a href="http://godoc.org/code.google.com/p/go.crypto/nacl/secretbox" rel="nofollow">http:&#x2F;&#x2F;godoc.org&#x2F;code.google.com&#x2F;p&#x2F;go.crypto&#x2F;nacl&#x2F;secretbox</a>
评论 #8483520 未加载
dcossonover 10 years ago
Awesome project, thanks for sharing.<p>Looks like it takes a similar approach as the hiera eyaml project (it also encrypts on a per-key basis using gpg) which I&#x27;ve found to be really nice to work with in the past (as opposed to other tools that use symmetric encryption or encrypt the entire blob of all secret keys together). Glad to see a tool that does this with etcd and consul, gives the same benefits without a centralized puppetmaster.<p>Any plans for clients in other languages? Or if you&#x27;re not planning to build would you accept PR&#x27;s for them?
评论 #8483984 未加载
rubiquityover 10 years ago
I had always wondered how these service discovery tools handled the encryption of data you put in them. I guess now I know! :)<p>Before this was created were people just doing an encrypt&#x2F;decrypt on in&#x2F;out in their application code?
评论 #8483482 未加载
ardan-bkennedyover 10 years ago
Another great and needed product written in Go. Nice work!!
评论 #8482678 未加载
AYBABTMEover 10 years ago
This is interesting, I&#x27;m happy that the tool be available as a library.