diff options
author | Jean-Paul Calderone <exarkun@divmod.com> | 2009-07-17 16:06:12 -0400 |
---|---|---|
committer | Jean-Paul Calderone <exarkun@divmod.com> | 2009-07-17 16:06:12 -0400 |
commit | 9ac425c6128bd1a8e13930153c38ff65fca990eb (patch) | |
tree | 8dd9474ee2c22808f014a4efcd2b3426d23129a3 /doc | |
parent | 2eb9b8cd647122acb46086c05cb0e4cbf2e1738a (diff) | |
parent | f0179c7665becc3d793b5beb49c5b5f13b20b370 (diff) | |
download | pyopenssl-git-9ac425c6128bd1a8e13930153c38ff65fca990eb.tar.gz |
Add support for specifying subject and issuer information when creating X509 extensions
Diffstat (limited to 'doc')
-rw-r--r-- | doc/pyOpenSSL.tex | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/pyOpenSSL.tex b/doc/pyOpenSSL.tex index 1a05e64..bd83d6d 100644 --- a/doc/pyOpenSSL.tex +++ b/doc/pyOpenSSL.tex @@ -188,8 +188,11 @@ A Python type object representing the PKCS12 object type. See \class{X509Extension}. \end{datadesc} -\begin{classdesc}{X509Extension}{typename, critical, value} -A class representing an X.509 v3 certificate extensions. +\begin{classdesc}{X509Extension}{typename, critical, value\optional{, subject}\optional{, issuer}} +A class representing an X.509 v3 certificate extensions. +See \url{http://openssl.org/docs/apps/x509v3_config.html\#STANDARD_EXTENSIONS} +for \var{typename} strings and their options. +Optional parameters \var{subject} and \var{issuer} must be X509 objects. \end{classdesc} \begin{datadesc}{NetscapeSPKIType} |