LF embedded encrypted (key-value?) database

blov · · 591 次点击    
这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
<p>I am currently looking for an embedded encrypted data storing solution that works good with Go. Ideally, it&#39;s Bolt DB with some sort of <a href="https://www.sqlite.org/see/doc/trunk/www/index.wiki" rel="nofollow">SEE</a>.</p> <p>I need this functionality, so user could host his encrypted <code>secret.db</code> file on let&#39;s say Dropbox and be able to access it through our CLI tool.</p> <hr/>**评论:**<br/><br/>captncraig: <pre><p>You could easily make &#39;getKey&#39; and &#39;setKey&#39; functions for bolt that encrypt the key and value for storage. It would not be hard at all.</p></pre>DualRearWheels: <pre><p>Fully encrypted SQLite: <a href="https://www.zetetic.net/sqlcipher/" rel="nofollow">https://www.zetetic.net/sqlcipher/</a></p> <p>Go library (works on linux easily, on windows it takes more work): <a href="https://github.com/xeodou/go-sqlcipher" rel="nofollow">https://github.com/xeodou/go-sqlcipher</a></p> <p>BSD style license for community edition. I use it only on linux and it works good (CGI script on shared hosting that saves some confidential data locally).</p></pre>tucnak: <pre><p>Have you heard of any similar key-value stores?</p></pre>DualRearWheels: <pre><p>No, but you can turn it in key-value with ~30 lines of code.</p></pre>

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

591 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传