About 52 results
Open links in new tab
  1. What is the purpose of the `self` parameter? Why is it needed?

    For a language-agnostic consideration of the design decision, see What is the advantage of having this/self pointer mandatory explicit?. To close debugging questions where OP omitted a self …

  2. oop - What do __init__ and self do in Python? - Stack Overflow

    Jul 8, 2017 · In this case, there are some benefits to allowing this: 1) Methods are just functions that happen defined in a class, and need to be callable either as bound methods with implicit self passing …

  3. How can I generate a self-signed SSL certificate using OpenSSL?

    A self-signed certificate does not chain back to a trusted anchor. The best way to avoid this is: Create your own authority (i.e., become a CA) Create a certificate signing request (CSR) for the server Sign …

  4. How can I create a self-signed certificate for 'localhost'?

    I've gone through the steps detailed in How do you use HTTPS and SSL on 'localhost'?, but this sets up a self-signed certificate for my machine name, and when browsing it via https://localhost, I receive …

  5. security - How do I create a self-signed certificate for code signing ...

    Sep 17, 2008 · This creates a self-signed (-r) certificate, with an exportable private key (-pe). It's named "My CA", and should be put in the CA store for the current user. We're using the SHA-256 algorithm. …

  6. How can I get Python Requests to trust a self-signed SSL certificate ...

    In my case, I was using a self-signed certificate generated by mkcert. While curl works fine with such self-signed certificates, the Python Requests module does not.

  7. receiving error: 'Error: SSL Error: SELF_SIGNED_CERT_IN_CHAIN' while ...

    Mar 9, 2012 · Any insight on what needs to be done to resolve the issue will be appreciated (I would prefer to resolve the issue through configuration as opposed to re-installing if possible). Error: "Error: …

  8. Ignore invalid self-signed ssl certificate in node.js with https ...

    Ignore invalid self-signed ssl certificate in node.js with https.request? Asked 13 years, 10 months ago Modified 1 year, 10 months ago Viewed 735k times

  9. Openssl : error "self signed certificate in certificate chain"

    Aug 29, 2012 · You have a certificate which is self-signed, so it's non-trusted by default, that's why OpenSSL complains. This warning is actually a good thing, because this scenario might also rise due …

  10. How can I make git accept a self signed certificate?

    Using Git, is there a way to tell it to accept a self signed certificate? I am using an https server to host a git server but for now the certificate is self signed. When I try to create the repo...