Giter Club home page Giter Club logo

Comments (2)

evilaliv3 avatar evilaliv3 commented on July 20, 2024

I agree on this topic.

In addition it would be really important to export an API to allow to inizialize the DH object by using a string.
This is a requirement in order to be able to create and use DH parameters in RAM without using the file system or eventually to use parameters stored in a different way (e.g. with a DB).

Right now this is not possible and the user in order to load a parameter has forcefully to create a file and load from it.

The following code could be used as reference, and uses tempfile that allow to create temportary files

import tempfile

def load_dh_from_string(ctx, dhparam):
    # self is a context object
    temp = tempfile.NamedTemporaryFile()
    temp.write(self.dh)
    temp.flush()
    ctx.load_tmp_dh(temp.name)
    temp.close()

from pyopenssl.

alex avatar alex commented on July 20, 2024

FFDH is bad and we're trying hard not to extend our APIs anyways.

from pyopenssl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.