Implementation of oblivious transfer with symmetric primitive?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












https://www.iacr.org/archive/crypto2003/27290145/27290145.pdf



I'm now reading this paper. I got how to reduce an OT cost.
OT extension is a method that replaces a OT with many base-OTs.
But I'm not still sure how to implement each base-OT.



How can we do that?
Any references? I prefer more recent construction.
Thank you.










share|improve this question

























    up vote
    2
    down vote

    favorite












    https://www.iacr.org/archive/crypto2003/27290145/27290145.pdf



    I'm now reading this paper. I got how to reduce an OT cost.
    OT extension is a method that replaces a OT with many base-OTs.
    But I'm not still sure how to implement each base-OT.



    How can we do that?
    Any references? I prefer more recent construction.
    Thank you.










    share|improve this question























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      https://www.iacr.org/archive/crypto2003/27290145/27290145.pdf



      I'm now reading this paper. I got how to reduce an OT cost.
      OT extension is a method that replaces a OT with many base-OTs.
      But I'm not still sure how to implement each base-OT.



      How can we do that?
      Any references? I prefer more recent construction.
      Thank you.










      share|improve this question













      https://www.iacr.org/archive/crypto2003/27290145/27290145.pdf



      I'm now reading this paper. I got how to reduce an OT cost.
      OT extension is a method that replaces a OT with many base-OTs.
      But I'm not still sure how to implement each base-OT.



      How can we do that?
      Any references? I prefer more recent construction.
      Thank you.







      oblivious-transfer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 43 mins ago









      mallea

      469111




      469111




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          3
          down vote













          You can take a look at LibOT, which is a C++ implementation of several OT extension protocols.
          In the Readme you can find a list with many base and extension Oblivious Transfer protocols.



          A protocol that people use a lot is the Simplest OT (although it was announced that the security proof has a bug by one of the authors at the TPMPC2018 workshop).



          Another popular option is PVW, the protocol by Peikert, Vaikuntanathan and Waters.
          It has two variants.
          One DDH-based and another LWE-based.
          The first one is particularly easy to understand and implement.






          share|improve this answer




















            Your Answer





            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "281"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcrypto.stackexchange.com%2fquestions%2f63652%2fimplementation-of-oblivious-transfer-with-symmetric-primitive%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            3
            down vote













            You can take a look at LibOT, which is a C++ implementation of several OT extension protocols.
            In the Readme you can find a list with many base and extension Oblivious Transfer protocols.



            A protocol that people use a lot is the Simplest OT (although it was announced that the security proof has a bug by one of the authors at the TPMPC2018 workshop).



            Another popular option is PVW, the protocol by Peikert, Vaikuntanathan and Waters.
            It has two variants.
            One DDH-based and another LWE-based.
            The first one is particularly easy to understand and implement.






            share|improve this answer
























              up vote
              3
              down vote













              You can take a look at LibOT, which is a C++ implementation of several OT extension protocols.
              In the Readme you can find a list with many base and extension Oblivious Transfer protocols.



              A protocol that people use a lot is the Simplest OT (although it was announced that the security proof has a bug by one of the authors at the TPMPC2018 workshop).



              Another popular option is PVW, the protocol by Peikert, Vaikuntanathan and Waters.
              It has two variants.
              One DDH-based and another LWE-based.
              The first one is particularly easy to understand and implement.






              share|improve this answer






















                up vote
                3
                down vote










                up vote
                3
                down vote









                You can take a look at LibOT, which is a C++ implementation of several OT extension protocols.
                In the Readme you can find a list with many base and extension Oblivious Transfer protocols.



                A protocol that people use a lot is the Simplest OT (although it was announced that the security proof has a bug by one of the authors at the TPMPC2018 workshop).



                Another popular option is PVW, the protocol by Peikert, Vaikuntanathan and Waters.
                It has two variants.
                One DDH-based and another LWE-based.
                The first one is particularly easy to understand and implement.






                share|improve this answer












                You can take a look at LibOT, which is a C++ implementation of several OT extension protocols.
                In the Readme you can find a list with many base and extension Oblivious Transfer protocols.



                A protocol that people use a lot is the Simplest OT (although it was announced that the security proof has a bug by one of the authors at the TPMPC2018 workshop).



                Another popular option is PVW, the protocol by Peikert, Vaikuntanathan and Waters.
                It has two variants.
                One DDH-based and another LWE-based.
                The first one is particularly easy to understand and implement.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 37 mins ago









                Daniel

                2,065824




                2,065824



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcrypto.stackexchange.com%2fquestions%2f63652%2fimplementation-of-oblivious-transfer-with-symmetric-primitive%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Comments

                    Popular posts from this blog

                    Long meetings (6-7 hours a day): Being “babysat” by supervisor

                    Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

                    Confectionery