<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <updated></updated>
  <generator>https://nostr.ae</generator>

  <title>Nostr notes by </title>
  <author>
    <name></name>
  </author>
  <link rel="self" type="application/atom+xml" href="https://nostr.ae/npub1vlgx34nzzqzrqq0uujch65yyzyknuduuqulj24ydlnarhwdhwzlsx69gsv.rss" />
  <link href="https://nostr.ae/npub1vlgx34nzzqzrqq0uujch65yyzyknuduuqulj24ydlnarhwdhwzlsx69gsv" />
  <id>https://nostr.ae/npub1vlgx34nzzqzrqq0uujch65yyzyknuduuqulj24ydlnarhwdhwzlsx69gsv</id>
  <icon></icon>
  <logo></logo>




  <entry>
    <id>https://nostr.ae/nevent1qqsf7gy98usfa0x9gvqp5aqy98zne5f560r5jh450le2ms7t7qdhzrqzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7wta7em</id>
    
      <title type="html">📅 Original date posted:2014-05-21 📝 Original message:Hi ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsf7gy98usfa0x9gvqp5aqy98zne5f560r5jh450le2ms7t7qdhzrqzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7wta7em" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqfz9sprqu4d4qtd7ywczgecv9dp4epnqa7zwlxvwtep2unjjje4cg6fc23&#39;&gt;nevent1q…fc23&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2014-05-21&lt;br/&gt;📝 Original message:Hi Wladimir,&lt;br/&gt;&lt;br/&gt;I&amp;#39;m personally happy to comply with this for any future commits, but wonder if you&amp;#39;ve considered the arguments against commit signing [1]? Note especially the reference therein to Linus&amp;#39; original negative opinion on signed commits [2].&lt;br/&gt;&lt;br/&gt;I came across these when searching for a way to enable signing by default, e.g. a `git config` option that might allow for this. Unfortunately, there isn&amp;#39;t one, meaning it&amp;#39;s likely that most folks will forget to do this most of the time.&lt;br/&gt;&lt;br/&gt;If you&amp;#39;re really serious about it, you should probably reject pull requests without signed commits; otherwise, signing becomes meaningless because only honest authors do it, and forgetful or malicious ones can avoid it without penalty.&lt;br/&gt;&lt;br/&gt;That said, I&amp;#39;m not sure that creating such a barrier to contribution is worth it.&lt;br/&gt;&lt;br/&gt;- Chris&lt;br/&gt;&lt;br/&gt;[1]: &lt;a href=&#34;http://stackoverflow.com/a/10166916/622403&#34;&gt;http://stackoverflow.com/a/10166916/622403&lt;/a&gt;&lt;br/&gt;[2]: &lt;a href=&#34;http://git.661346.n2.nabble.com/GPG-signing-for-git-commit-td2582986.html&#34;&gt;http://git.661346.n2.nabble.com/GPG-signing-for-git-commit-td2582986.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;On May 21, 2014, at 2:23 PM, Wladimir &amp;lt;laanwj at gmail.com&amp;gt; wrote:&lt;br/&gt;&lt;br/&gt;&amp;gt; Hello all,&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; When you&amp;#39;re contributing to Bitcoin Core development please sign your&lt;br/&gt;&amp;gt; git commits. This is easy to do and will help in assuring the&lt;br/&gt;&amp;gt; integrity of the tree.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; How to sign your commits?&lt;br/&gt;&amp;gt; ------------------------------------------&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Provide the `-S` flag (or `--gpg-sign`) to git commit when you commit&lt;br/&gt;&amp;gt; your changes, for example&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    git commit -m &amp;#34;Commit message&amp;#34; -S&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Optionally you can provide a key id after the -S option to sign with a&lt;br/&gt;&amp;gt; specific key.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; What if I forgot?&lt;br/&gt;&amp;gt; -------------------------&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; You can retroactively sign your previous commit using --amend, for example&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    git commit -S --amend&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; If you need to go further back, you can use the interactive rebase&lt;br/&gt;&amp;gt; command with &amp;#39;edit&amp;#39;. Replace HEAD~3 with the base commit from which&lt;br/&gt;&amp;gt; you want to start.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    git rebase -i HEAD~3&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Replace &amp;#39;pick&amp;#39; by &amp;#39;edit&amp;#39; for the commit that you want to sign and the&lt;br/&gt;&amp;gt; rebasing will stop after that commit. Then you can amend the commit as&lt;br/&gt;&amp;gt; above. Afterwards, do&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    git rebase --continue&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; As this will rewrite history, you cannot do this when your commit is&lt;br/&gt;&amp;gt; already merged. In that case, too bad, better luck next time.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; If you rewrite history for another reason - for example when squashing&lt;br/&gt;&amp;gt; commits - make sure that you re-sign as the signatures will be lost.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; How to check if commits are signed?&lt;br/&gt;&amp;gt; -------------------------------------------------------&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Use git log with show-signature,&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    git log --show-signature&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    commit 6fcdad787f1fb381a3a0fe6b1a1e45477426dccb&lt;br/&gt;&amp;gt;    gpg: Signature made Wed 21 May 2014 12:27:55 PM CEST using RSA key&lt;br/&gt;&amp;gt; ID 2346C9A6&lt;br/&gt;&amp;gt;    gpg: Good signature from &amp;#34;Wladimir J. van der Laan &amp;lt;laanwj at gmail.com&amp;gt;&amp;#34;&lt;br/&gt;&amp;gt;    Author: Wladimir J. van der Laan &amp;lt;laanwj at gmail.com&amp;gt;&lt;br/&gt;&amp;gt;    Date:   Wed May 21 12:27:37 2014 &#43;0200&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;        qt: Periodic language update&lt;br/&gt;&amp;gt;    ...&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; You can also pass the --show-signature option to `git show` to check a&lt;br/&gt;&amp;gt; single commit.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; If you do this on the current repository you&amp;#39;ll see that I&amp;#39;m almost&lt;br/&gt;&amp;gt; the only person signing commits. I would like more people to get into&lt;br/&gt;&amp;gt; this habit.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; How to sign merges?&lt;br/&gt;&amp;gt; --------------------------------&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; When using the github interface to merge a pull request, the resulting&lt;br/&gt;&amp;gt; merge commit is not signed.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Pieter Wullie wrote a script that simplifies merging and signing. It&lt;br/&gt;&amp;gt; can be found in contrib/devtools. Setup instructions can be found in&lt;br/&gt;&amp;gt; the README.md in that directory. After setting it up for the&lt;br/&gt;&amp;gt; repository you can use the script in the following way:&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    contrib/devtools/github-merge.sh 1234&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Replace 1234 by the pull request number that you want to merge. It&lt;br/&gt;&amp;gt; will merge the pull request and drop you into a shell so you can&lt;br/&gt;&amp;gt; verify changes and test. Once satisfied, exit the shell and answer the&lt;br/&gt;&amp;gt; questions to merge and sign it and push upstream automatically (or&lt;br/&gt;&amp;gt; not).&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Please use this script when possible for merging instead of the github&lt;br/&gt;&amp;gt; interface.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; --------------------------&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Wladimir&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; ------------------------------------------------------------------------------&lt;br/&gt;&amp;gt; &amp;#34;Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE&lt;br/&gt;&amp;gt; Instantly run your Selenium tests across 300&#43; browser/OS combos.&lt;br/&gt;&amp;gt; Get unparalleled scalability from the best Selenium testing platform available&lt;br/&gt;&amp;gt; Simple to use. Nothing to install. Get started now for free.&amp;#34;&lt;br/&gt;&amp;gt; &lt;a href=&#34;http://p.sf.net/sfu/SauceLabs&#34;&gt;http://p.sf.net/sfu/SauceLabs&lt;/a&gt;&lt;br/&gt;&amp;gt; _______________________________________________&lt;br/&gt;&amp;gt; Bitcoin-development mailing list&lt;br/&gt;&amp;gt; Bitcoin-development at lists.sourceforge.net&lt;br/&gt;&amp;gt; &lt;a href=&#34;https://lists.sourceforge.net/lists/listinfo/bitcoin-development&#34;&gt;https://lists.sourceforge.net/lists/listinfo/bitcoin-development&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;An HTML attachment was scrubbed...&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140521/39a9fcfc/attachment.html&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140521/39a9fcfc/attachment.html&amp;gt&lt;/a&gt;;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;A non-text attachment was scrubbed...&lt;br/&gt;Name: signature.asc&lt;br/&gt;Type: application/pgp-signature&lt;br/&gt;Size: 842 bytes&lt;br/&gt;Desc: Message signed with OpenPGP using GPGMail&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140521/39a9fcfc/attachment.sig&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140521/39a9fcfc/attachment.sig&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-07T15:21:53Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsyka0qnjtqx7ykvr0gmw2mcd6j4g4v5mjhujftfaaatnrv6tt8yfszypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7dwjgpu</id>
    
      <title type="html">📅 Original date posted:2014-05-21 📝 Original message:On May ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsyka0qnjtqx7ykvr0gmw2mcd6j4g4v5mjhujftfaaatnrv6tt8yfszypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7dwjgpu" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsyka0z2zhx8cqshpres2kn3xejw8zg4kjyykzuph6zcuda7gne28ggwwdng&#39;&gt;nevent1q…wdng&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2014-05-21&lt;br/&gt;📝 Original message:On May 21, 2014, at 10:25 PM, David A. Harding &amp;lt;dave at dtrt.org&amp;gt; wrote:&lt;br/&gt;&lt;br/&gt;&amp;gt; On Wed, May 21, 2014 at 06:39:44PM &#43;0200, Chris Beams wrote:&lt;br/&gt;&amp;gt;&amp;gt; I [was] searching for a way to enable signing by default [...]&lt;br/&gt;&amp;gt;&amp;gt; Unfortunately, there isn&amp;#39;t one, meaning it&amp;#39;s likely that most folks&lt;br/&gt;&amp;gt;&amp;gt; will forget to do this most of the time.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; For all of my projects, I now I put this script in&lt;br/&gt;&amp;gt; .git/hooks/post-commit and post-merge:&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    #!/bin/bash -eu&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    if ! git log -n1 --show-signature | grep -q &amp;#39;gpg: Good signature&amp;#39;&lt;br/&gt;&amp;gt;    then&lt;br/&gt;&amp;gt;        yes &amp;#34;FORGOT TO SIGN COMMIT MESSAGE&amp;#34;&lt;br/&gt;&amp;gt;        exit 1&lt;br/&gt;&amp;gt;    fi&lt;br/&gt;&lt;br/&gt;Funny, I was just in the middle of writing a pre-push hook to do something similar when I decided to check my email :) Your post-commit approach is indeed simpler, so I&amp;#39;ve gone with it for the moment [1]. Thanks.&lt;br/&gt;&lt;br/&gt;However, I noticed in the process of testing that this approach messes with rebase workflows. For example: if I make several commits (all of which are properly signed), and then rebase to reorder them, rebase ends up hanging because it delegates to `commit` and the use of `yes` in the post-commit hook blocks forever. I&amp;#39;ve changed `yes` to `echo` to avoid this, but it still means that one must be rather diligent to keep signatures in place when rebasing. Gerwitz does address rebasing in the presence of commit sigs in the &amp;#34;horror story&amp;#34; doc you linked to [2], but there&amp;#39;s no magic: this makes the whole rebasing process considerably more tedious, and linearly so with however many commits you&amp;#39;re modifying.&lt;br/&gt;&lt;br/&gt;This may amount to a rationale for going with a pre-push hook after all, i.e. in order to defer the check for signatures until the last possible moment. This would allow for cheap iterative rebasing once again.&lt;br/&gt;&lt;br/&gt;I suppose the proper solution would be a `git config` option such as &amp;#39;commit.sign&amp;#39;, that if set to true would mean your commits are always signed, even if rebase is the one calling `commit`. This would obviate the need for the alias I mention below as well.&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&amp;gt; So anytime I forget to sign, I get an obvious error and can immediately&lt;br/&gt;&amp;gt; run git commit --amend -S.&lt;br/&gt;&lt;br/&gt;If one is already in the habit of using an alias for `commit` (I&amp;#39;ve long used `ci` for concision), the -S can be included in the alias:&lt;br/&gt;&lt;br/&gt;    git config alias.ci &amp;#39;commit -S&amp;#39;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&amp;gt; To automatically add a script like the one above to all new projects (plus&lt;br/&gt;&amp;gt; quickly add it old current projects), you can follow these instructions:&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt;    &lt;a href=&#34;http://stackoverflow.com/questions/2293498/git-commit-hooks-global-settings&#34;&gt;http://stackoverflow.com/questions/2293498/git-commit-hooks-global-settings&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;This was a great tip, thanks!&lt;br/&gt;&lt;br/&gt;- Chris&lt;br/&gt;&lt;br/&gt;[1]: &lt;a href=&#34;https://github.com/cbeams/dotfiles/commit/58d6942&#34;&gt;https://github.com/cbeams/dotfiles/commit/58d6942&lt;/a&gt;&lt;br/&gt;[2]: &lt;a href=&#34;http://mikegerwitz.com/papers/git-horror-story.html#_option_3&#34;&gt;http://mikegerwitz.com/papers/git-horror-story.html#_option_3&lt;/a&gt;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;An HTML attachment was scrubbed...&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140522/16681d8b/attachment.html&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140522/16681d8b/attachment.html&amp;gt&lt;/a&gt;;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;A non-text attachment was scrubbed...&lt;br/&gt;Name: signature.asc&lt;br/&gt;Type: application/pgp-signature&lt;br/&gt;Size: 842 bytes&lt;br/&gt;Desc: Message signed with OpenPGP using GPGMail&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140522/16681d8b/attachment.sig&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140522/16681d8b/attachment.sig&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-07T15:21:53Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsqktm9ej5q9n6wztl45g5pdan30jgkckenfeark9m8sq3r3nxdsmqzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7qn254h</id>
    
      <title type="html">📅 Original date posted:2014-03-29 📝 Original message:Matt, ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsqktm9ej5q9n6wztl45g5pdan30jgkckenfeark9m8sq3r3nxdsmqzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7qn254h" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs2n49a77z33msaqawdsh9zq7u7n2tq6sy7vdrnl8jq60uv4fwf6ass7umwf&#39;&gt;nevent1q…umwf&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2014-03-29&lt;br/&gt;📝 Original message:Matt, could you expand on use cases for which you see Shamir&amp;#39;s Secret Sharing as the best tool for the job? In particular, when do you see that it would be superior to simply going with multisig in the first place? Perhaps you see these as complimentary approaches, toward defense in depth? In any case, the Motivation and Rationale sections of the BIP in its current form are silent on these questions.&lt;br/&gt;&lt;br/&gt;On Mar 29, 2014, at 9:05 AM, Matt Whitlock &amp;lt;bip at mattwhitlock.name&amp;gt; wrote:&lt;br/&gt;&lt;br/&gt;&amp;gt; Abstract: A method is described for dividing a Bitcoin private key into shares in a manner such that the key can be reconstituted from any sufficiently large subset of the shares but such that individually the shares do not reveal any information about the key. This method is commonly known as Shamir&amp;#39;s Secret Sharing Scheme. Additionally, an encoding methodology is proposed to standardize transmission and storage of shares.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Complete BIP: &lt;a href=&#34;https://github.com/whitslack/btctool/blob/bip/bip-xxxx.mediawiki&#34;&gt;https://github.com/whitslack/btctool/blob/bip/bip-xxxx.mediawiki&lt;/a&gt;&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; I am looking to have this BIP assigned a number and added to the bitcoin/bips repository. I invite any comments, questions, or suggestions.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; ------------------------------------------------------------------------------&lt;br/&gt;&amp;gt; _______________________________________________&lt;br/&gt;&amp;gt; Bitcoin-development mailing list&lt;br/&gt;&amp;gt; Bitcoin-development at lists.sourceforge.net&lt;br/&gt;&amp;gt; &lt;a href=&#34;https://lists.sourceforge.net/lists/listinfo/bitcoin-development&#34;&gt;https://lists.sourceforge.net/lists/listinfo/bitcoin-development&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;A non-text attachment was scrubbed...&lt;br/&gt;Name: signature.asc&lt;br/&gt;Type: application/pgp-signature&lt;br/&gt;Size: 841 bytes&lt;br/&gt;Desc: Message signed with OpenPGP using GPGMail&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140329/7d13e0ea/attachment.sig&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140329/7d13e0ea/attachment.sig&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-07T15:16:39Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsze55l2tk5jzw5sdr627h04fxh44yu6qxkmzxcg8scn6p2h03j2aqzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7jeuqc0</id>
    
      <title type="html">📅 Original date posted:2014-03-29 📝 Original ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsze55l2tk5jzw5sdr627h04fxh44yu6qxkmzxcg8scn6p2h03j2aqzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7jeuqc0" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsz6ughqkhc96xqlyk0pkc6x6yhf46zqepkr7e35tpml69p2v6uwzs32zm98&#39;&gt;nevent1q…zm98&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2014-03-29&lt;br/&gt;📝 Original message:Enlightening; thanks, Matt. And apologies to the list for my earlier inadvertent double-post.&lt;br/&gt;&lt;br/&gt;On Mar 29, 2014, at 12:16 PM, Matt Whitlock &amp;lt;bip at mattwhitlock.name&amp;gt; wrote:&lt;br/&gt;&lt;br/&gt;&amp;gt; On Saturday, 29 March 2014, at 10:08 am, Chris Beams wrote:&lt;br/&gt;&amp;gt;&amp;gt; Matt, could you expand on use cases for which you see Shamir&amp;#39;s Secret Sharing Scheme as the best tool for the job? In particular, when do you see that it would be superior to simply going with multisig in the first place? Perhaps you see these as complimentary approaches, toward defense-in-depth? In any case, the Motivation and Rationale sections of the BIP in its current form are silent on these questions.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; I have added two new sections to address your questions.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; &lt;a href=&#34;https://github.com/whitslack/btctool/blob/bip/bip-xxxx.mediawiki&#34;&gt;https://github.com/whitslack/btctool/blob/bip/bip-xxxx.mediawiki&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;A non-text attachment was scrubbed...&lt;br/&gt;Name: signature.asc&lt;br/&gt;Type: application/pgp-signature&lt;br/&gt;Size: 841 bytes&lt;br/&gt;Desc: Message signed with OpenPGP using GPGMail&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140329/6d447c6b/attachment.sig&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140329/6d447c6b/attachment.sig&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-07T15:16:36Z</updated>
  </entry>

  <entry>
    <id>https://nostr.ae/nevent1qqsrp3vmnn39t5pgha5pvll7qf03mkdmcu8gwsc7lce909ljewk9h6qzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7yc6wmz</id>
    
      <title type="html">📅 Original date posted:2014-03-29 📝 Original message:Matt, ...</title>
    
    <link rel="alternate" href="https://nostr.ae/nevent1qqsrp3vmnn39t5pgha5pvll7qf03mkdmcu8gwsc7lce909ljewk9h6qzypnaq6xkvggqgvqplnjtzl2sssgj603hnsrn7f253h705waekact7yc6wmz" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs0rw5l5vt67vcp7a8a9c0anys7v6vy70w7n2j3yxncd46rxy9f8ygwwt8j3&#39;&gt;nevent1q…t8j3&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;📅 Original date posted:2014-03-29&lt;br/&gt;📝 Original message:Matt, could you expand on use cases for which you see Shamir&amp;#39;s Secret Sharing Scheme as the best tool for the job? In particular, when do you see that it would be superior to simply going with multisig in the first place? Perhaps you see these as complimentary approaches, toward defense-in-depth? In any case, the Motivation and Rationale sections of the BIP in its current form are silent on these questions.&lt;br/&gt;&lt;br/&gt;On Mar 29, 2014, at 9:05 AM, Matt Whitlock &amp;lt;bip at mattwhitlock.name&amp;gt; wrote:&lt;br/&gt;&lt;br/&gt;&amp;gt; Abstract: A method is described for dividing a Bitcoin private key into shares in a manner such that the key can be reconstituted from any sufficiently large subset of the shares but such that individually the shares do not reveal any information about the key. This method is commonly known as Shamir&amp;#39;s Secret Sharing Scheme. Additionally, an encoding methodology is proposed to standardize transmission and storage of shares.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; Complete BIP: &lt;a href=&#34;https://github.com/whitslack/btctool/blob/bip/bip-xxxx.mediawiki&#34;&gt;https://github.com/whitslack/btctool/blob/bip/bip-xxxx.mediawiki&lt;/a&gt;&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; I am looking to have this BIP assigned a number and added to the bitcoin/bips repository. I invite any comments, questions, or suggestions.&lt;br/&gt;&amp;gt; &lt;br/&gt;&amp;gt; ------------------------------------------------------------------------------&lt;br/&gt;&amp;gt; _______________________________________________&lt;br/&gt;&amp;gt; Bitcoin-development mailing list&lt;br/&gt;&amp;gt; Bitcoin-development at lists.sourceforge.net&lt;br/&gt;&amp;gt; &lt;a href=&#34;https://lists.sourceforge.net/lists/listinfo/bitcoin-development&#34;&gt;https://lists.sourceforge.net/lists/listinfo/bitcoin-development&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;-------------- next part --------------&lt;br/&gt;A non-text attachment was scrubbed...&lt;br/&gt;Name: signature.asc&lt;br/&gt;Type: application/pgp-signature&lt;br/&gt;Size: 841 bytes&lt;br/&gt;Desc: Message signed with OpenPGP using GPGMail&lt;br/&gt;URL: &amp;lt;&lt;a href=&#34;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140329/f9a99d19/attachment.sig&amp;gt&#34;&gt;http://lists.linuxfoundation.org/pipermail/bitcoin-dev/attachments/20140329/f9a99d19/attachment.sig&amp;gt&lt;/a&gt;;
    </content>
    <updated>2023-06-07T15:16:35Z</updated>
  </entry>

</feed>