Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7054629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:39:01+00:00 2026-05-28T03:39:01+00:00

Using Python and PyOpenSSL, is there a way to retrieve the value of a

  • 0

Using Python and PyOpenSSL, is there a way to retrieve the value of a custom extension? By custom extension, I mean an extension encoded using the arbitrary extension format described under ARBITRARY EXTENSIONS at http://www.openssl.org/docs/apps/x509v3_config.html.

Also, is it possible to create a certificate that contains such an extension using PyOpenSSL?

If the answer to either of these is “no”, I would also be interested in pointers on how to do this with any other Python library. I do not want to perform system calls to the OpenSSL command line app.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T03:39:02+00:00Added an answer on May 28, 2026 at 3:39 am

    You can get any and all extensions on an X.509 certificate you’ve loaded using pyOpenSSL. For example:

    >>> from OpenSSL import crypto as c
    >>> cert = c.load_certificate(c.FILETYPE_PEM, file('server.pem').read())
    >>> cert.get_extension_count()
    4L
    >>> ext = cert.get_extension(0)
    >>> ext.get_short_name()
    'basicConstraints'
    >>> ext.get_data()
    '0\x00'
    >>> 
    

    The data comes out in its raw format (some encoding of ASN.1, perhaps depending on the specific extension).

    You can also add extensions.

    >>> newext = c.X509Extension('nsComment', 0, 'tacos are delicious')
    >>> cert.add_extensions([newext])
    >>> cert.get_extension_count()
    5L
    >>> cert.get_extension(4)
    <X509Extension object at 0x7f74db7c2290>
    >>> cert.get_extension(4).get_data()
    '\x16\x13tacos are delicious'
    >>> 
    

    However, note the slight asymmetry. The extension data must be a string and is encoded using ASN.1 automatically. This seems to preclude the possibility of adding arbitrary non-string extension data.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Python v2, is there a way to ignore a value in a string
Using Python 2.6, is there a way to check if all the items of
Using python I have to retrieve value of time and date of an event
Using Python, what's the correct way to set a file to be read-only when
Using Python 2.4, how do I print a list in a nice tabular format?
using python 2.6.5 and python-ldap 2.3.10, I have the following problem: Under certain circumstances
Using Python, what's the most efficient way to switch the positions of every other
Using python 2.4, I'm attempting to identify, at runtime, which of an arbitrary function's
Using Python I want to be able to draw text at different angles using
Using python 2.4 and the built-in ZipFile library, I cannot read very large zip

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.