~exarkun/pyopenssl/trunk

« back to all changes in this revision

Viewing changes to OpenSSL/crypto/pkcs7.c

  • Committer: Jean-Paul Calderone
  • Date: 2011-09-11 19:49:43 UTC
  • mfrom: (156.3.22 sphinx-doc)
  • Revision ID: exarkun@divmod.com-20110911194943-ucaan2tzidk7ek5l
Convert the documentation from LaTeX/epytext to Sphinx/ReST

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
static char crypto_PKCS7_type_is_signed_doc[] = "\n\
16
16
Check if this NID_pkcs7_signed object\n\
17
17
\n\
18
 
@return: True if the PKCS7 is of type signed\n\
 
18
:return: True if the PKCS7 is of type signed\n\
19
19
";
20
20
 
21
21
static PyObject *
33
33
static char crypto_PKCS7_type_is_enveloped_doc[] = "\n\
34
34
Check if this NID_pkcs7_enveloped object\n\
35
35
\n\
36
 
@returns: True if the PKCS7 is of type enveloped\n\
 
36
:returns: True if the PKCS7 is of type enveloped\n\
37
37
";
38
38
 
39
39
static PyObject *
51
51
static char crypto_PKCS7_type_is_signedAndEnveloped_doc[] = "\n\
52
52
Check if this NID_pkcs7_signedAndEnveloped object\n\
53
53
\n\
54
 
@returns: True if the PKCS7 is of type signedAndEnveloped\n\
 
54
:returns: True if the PKCS7 is of type signedAndEnveloped\n\
55
55
";
56
56
 
57
57
static PyObject *
69
69
static char crypto_PKCS7_type_is_data_doc[] = "\n\
70
70
Check if this NID_pkcs7_data object\n\
71
71
\n\
72
 
@return: True if the PKCS7 is of type data\n\
 
72
:return: True if the PKCS7 is of type data\n\
73
73
";
74
74
 
75
75
static PyObject *
87
87
static char crypto_PKCS7_get_type_name_doc[] = "\n\
88
88
Returns the type name of the PKCS7 structure\n\
89
89
\n\
90
 
@return: A string with the typename\n\
 
90
:return: A string with the typename\n\
91
91
";
92
92
 
93
93
static PyObject *