Skip to content

Commit f08138b

Browse files
committed
Deploying to gh-pages from @ 92bb1c2 🚀
1 parent d6321c8 commit f08138b

17 files changed

+135
-130
lines changed

latest/_modules/gssapi/creds.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ <h1>Source code for gssapi.creds</h1><div class="highlight"><pre>
162162

163163
<span class="nd">@property</span>
164164
<span class="k">def</span> <span class="nf">lifetime</span><span class="p">(</span><span class="bp">self</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="nb">int</span><span class="p">:</span>
165-
<span class="sd">&quot;&quot;&quot;Get the remaining lifetime of these credentials&quot;&quot;&quot;</span>
165+
<span class="sd">&quot;&quot;&quot;Get the remaining lifetime of these credentials, in seconds&quot;&quot;&quot;</span>
166166
<span class="k">return</span> <span class="n">t</span><span class="o">.</span><span class="n">cast</span><span class="p">(</span><span class="nb">int</span><span class="p">,</span>
167167
<span class="bp">self</span><span class="o">.</span><span class="n">inquire</span><span class="p">(</span><span class="n">name</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span> <span class="n">lifetime</span><span class="o">=</span><span class="kc">True</span><span class="p">,</span>
168168
<span class="n">usage</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span> <span class="n">mechs</span><span class="o">=</span><span class="kc">False</span><span class="p">)</span><span class="o">.</span><span class="n">lifetime</span><span class="p">)</span>
@@ -209,8 +209,8 @@ <h1>Source code for gssapi.creds</h1><div class="highlight"><pre>
209209
<span class="sd"> Args:</span>
210210
<span class="sd"> name (~gssapi.names.Name): the name associated with the</span>
211211
<span class="sd"> credentials, or None for the default name</span>
212-
<span class="sd"> lifetime (int): the desired lifetime of the credentials, or None</span>
213-
<span class="sd"> for indefinite</span>
212+
<span class="sd"> lifetime (int): the desired lifetime of the credentials in seconds,</span>
213+
<span class="sd"> or None for indefinite</span>
214214
<span class="sd"> mechs (list): the desired :class:`MechType` OIDs to be used</span>
215215
<span class="sd"> with the credentials, or None for the default set</span>
216216
<span class="sd"> usage (str): the usage for the credentials -- either &#39;both&#39;,</span>
@@ -325,8 +325,8 @@ <h1>Source code for gssapi.creds</h1><div class="highlight"><pre>
325325

326326
<span class="sd"> Args:</span>
327327
<span class="sd"> name (~gssapi.names.Name): the name to impersonate</span>
328-
<span class="sd"> lifetime (int): the desired lifetime of the new credentials,</span>
329-
<span class="sd"> or None for indefinite</span>
328+
<span class="sd"> lifetime (int): the desired lifetime of the new credentials in</span>
329+
<span class="sd"> seconds, or None for indefinite</span>
330330
<span class="sd"> mechs (list): the desired :class:`MechType` OIDs for the new</span>
331331
<span class="sd"> credentials</span>
332332
<span class="sd"> usage (str): the desired usage for the new credentials -- either</span>
@@ -398,13 +398,13 @@ <h1>Source code for gssapi.creds</h1><div class="highlight"><pre>
398398
<span class="sd"> about them.</span>
399399

400400
<span class="sd"> Args:</span>
401-
<span class="sd"> mech (~gssapi.OID): the mechanism for which to retrive the</span>
401+
<span class="sd"> mech (~gssapi.OID): the mechanism for which to retrieve the</span>
402402
<span class="sd"> information</span>
403403
<span class="sd"> name (bool): get the name associated with the credentials</span>
404404
<span class="sd"> init_lifetime (bool): get the remaining initiate lifetime for</span>
405-
<span class="sd"> the credentials</span>
405+
<span class="sd"> the credentials in seconds</span>
406406
<span class="sd"> accept_lifetime (bool): get the remaining accept lifetime for</span>
407-
<span class="sd"> the credentials</span>
407+
<span class="sd"> the credentials in seconds</span>
408408
<span class="sd"> usage (bool): get the usage for the credentials</span>
409409

410410
<span class="sd"> Returns:</span>
@@ -468,9 +468,9 @@ <h1>Source code for gssapi.creds</h1><div class="highlight"><pre>
468468
<span class="sd"> usage (str): the usage for the credentials -- either &#39;both&#39;,</span>
469469
<span class="sd"> &#39;initiate&#39;, or &#39;accept&#39;</span>
470470
<span class="sd"> init_lifetime (int): the desired initiate lifetime of the</span>
471-
<span class="sd"> credentials, or None for indefinite</span>
471+
<span class="sd"> credentials in seconds, or None for indefinite</span>
472472
<span class="sd"> accept_lifetime (int): the desired accept lifetime of the</span>
473-
<span class="sd"> credentials, or None for indefinite</span>
473+
<span class="sd"> credentials in seconds, or None for indefinite</span>
474474
<span class="sd"> impersonator (Credentials): the credentials to use to impersonate</span>
475475
<span class="sd"> the given name, or None to not acquire normally</span>
476476
<span class="sd"> (:requires-ext:`s4u`)</span>

latest/_modules/gssapi/raw/creds.html

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,17 +109,17 @@ <h1>Source code for gssapi.raw.creds</h1><div class="highlight"><pre>
109109
<span class="sd"> Args:</span>
110110
<span class="sd"> name (~gssapi.raw.names.Name): the name for which to acquire the</span>
111111
<span class="sd"> credentials (or None for the &quot;no name&quot; functionality)</span>
112-
<span class="sd"> lifetime (int): the lifetime for the credentials (or None for</span>
113-
<span class="sd"> indefinite)</span>
112+
<span class="sd"> lifetime (int): the lifetime in seconds for the credentials (or None</span>
113+
<span class="sd"> for indefinite)</span>
114114
<span class="sd"> mechs (~gssapi.raw.types.MechType): the desired mechanisms for which</span>
115115
<span class="sd"> the credentials should work, or None for the default set</span>
116116
<span class="sd"> usage (str): the usage type for the credentials: may be</span>
117117
<span class="sd"> &#39;initiate&#39;, &#39;accept&#39;, or &#39;both&#39;</span>
118118

119119
<span class="sd"> Returns:</span>
120120
<span class="sd"> AcquireCredResult: the resulting credentials, the actual mechanisms</span>
121-
<span class="sd"> with which they may be used, and their actual lifetime (or None for</span>
122-
<span class="sd"> indefinite or not supported)</span>
121+
<span class="sd"> with which they may be used, and their actual lifetime in seconds (or</span>
122+
<span class="sd"> None for indefinite or not supported)</span>
123123

124124
<span class="sd"> Raises:</span>
125125
<span class="sd"> ~gssapi.exceptions.BadMechanismError</span>
@@ -175,9 +175,9 @@ <h1>Source code for gssapi.raw.creds</h1><div class="highlight"><pre>
175175
<span class="sd"> usage (str): usage type for credentials. Possible values:</span>
176176
<span class="sd"> &#39;initiate&#39; (default), &#39;accept&#39;, &#39;both&#39; (failsafe).</span>
177177
<span class="sd"> init_lifetime (int): lifetime of credentials for use in initiating</span>
178-
<span class="sd"> security contexts (None for indefinite)</span>
178+
<span class="sd"> security contexts in seconds (None for indefinite)</span>
179179
<span class="sd"> accept_lifetime (int): lifetime of credentials for use in accepting</span>
180-
<span class="sd"> security contexts (None for indefinite)</span>
180+
<span class="sd"> security contexts in seconds (None for indefinite)</span>
181181
<span class="sd"> mutate_input (bool): whether to mutate the input credentials (True)</span>
182182
<span class="sd"> or produce a new set of credentials (False). Defaults to False</span>
183183

@@ -244,8 +244,10 @@ <h1>Source code for gssapi.raw.creds</h1><div class="highlight"><pre>
244244
<span class="sd"> creds (Creds): the credentials to inspect</span>
245245
<span class="sd"> mech (~gssapi.OID): the desired mechanism</span>
246246
<span class="sd"> name (bool): get the Name associated with the credentials</span>
247-
<span class="sd"> init_lifetime (bool): get the initiator TTL for the credentials</span>
248-
<span class="sd"> accept_lifetime (bool): get the acceptor TTL for the credentials</span>
247+
<span class="sd"> init_lifetime (bool): get the initiator TTL for the credentials (in</span>
248+
<span class="sd"> seconds)</span>
249+
<span class="sd"> accept_lifetime (bool): get the acceptor TTL for the credentials (in</span>
250+
<span class="sd"> seconds)</span>
249251
<span class="sd"> usage (bool): get the usage type of the credentials</span>
250252

251253
<span class="sd"> Returns:</span>

latest/_modules/gssapi/raw/ext_cred_store.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ <h1>Source code for gssapi.raw.ext_cred_store</h1><div class="highlight"><pre>
104104
<span class="sd"> See :doc:`credstore` for valid values</span>
105105
<span class="sd"> name (~gssapi.raw.names.Name): the name associated with the</span>
106106
<span class="sd"> credentials, or None for the default name</span>
107-
<span class="sd"> lifetime (int): the desired lifetime of the credentials, or None</span>
108-
<span class="sd"> for indefinite</span>
107+
<span class="sd"> lifetime (int): the desired lifetime of the credentials in seconds, or</span>
108+
<span class="sd"> None for indefinite</span>
109109
<span class="sd"> mechs (list): the desired mechanisms to be used with these</span>
110110
<span class="sd"> credentials, or None for the default set</span>
111111
<span class="sd"> usage (str): the usage for these credentials -- either &#39;both&#39;,</span>
@@ -152,10 +152,10 @@ <h1>Source code for gssapi.raw.ext_cred_store</h1><div class="highlight"><pre>
152152
<span class="sd"> credentials</span>
153153
<span class="sd"> usage (str): the usage for these credentials -- either &#39;both&#39;,</span>
154154
<span class="sd"> &#39;initiate&#39;, or &#39;accept&#39;</span>
155-
<span class="sd"> init_lifetime (int): the desired initiate lifetime of the</span>
156-
<span class="sd"> credentials, or None for indefinite</span>
157-
<span class="sd"> accept_lifetime (int): the desired accept lifetime of the</span>
158-
<span class="sd"> credentials, or None for indefinite</span>
155+
<span class="sd"> init_lifetime (int): the desired initiate lifetime of the credentials</span>
156+
<span class="sd"> in seconds, or None for indefinite</span>
157+
<span class="sd"> accept_lifetime (int): the desired accept lifetime of the credentials</span>
158+
<span class="sd"> in seconds, or None for indefinite</span>
159159

160160
<span class="sd"> Returns:</span>
161161
<span class="sd"> AcquireCredResult: the new credentials set and information about</span>

latest/_modules/gssapi/raw/ext_krb5.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h1>Source code for gssapi.raw.ext_krb5</h1><div class="highlight"><pre>
202202
<span class="n">context</span><span class="p">:</span> <span class="s2">&quot;SecurityContext&quot;</span><span class="p">,</span>
203203
<span class="n">version</span><span class="p">:</span> <span class="nb">int</span><span class="p">,</span>
204204
<span class="p">)</span> <span class="o">-&gt;</span> <span class="n">Krb5LucidContext</span><span class="p">:</span></div>
205-
<span class="sd">&quot;&quot;&quot;Retuns a non-opaque version of the internal context info.</span>
205+
<span class="sd">&quot;&quot;&quot;Returns a non-opaque version of the internal context info.</span>
206206

207207
<span class="sd"> Gets information about the Kerberos security context passed in. Currently</span>
208208
<span class="sd"> only version 1 is known and supported by this library.</span>
@@ -312,7 +312,7 @@ <h1>Source code for gssapi.raw.ext_krb5</h1><div class="highlight"><pre>
312312

313313
<span class="sd"> Note:</span>
314314
<span class="sd"> Heimdal can only get the tkt flags on the acceptor security context.</span>
315-
<span class="sd"> MIT is able to get the tkt flags on initators and acceptors.</span>
315+
<span class="sd"> MIT is able to get the tkt flags on initiators and acceptors.</span>
316316

317317
<span class="sd"> Args:</span>
318318
<span class="sd"> context (~gssapi.raw.sec_contexts.SecurityContext): the security</span>

latest/_modules/gssapi/raw/ext_password.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,17 @@ <h1>Source code for gssapi.raw.ext_password</h1><div class="highlight"><pre>
9696
<span class="sd"> Args:</span>
9797
<span class="sd"> name (~gssapi.raw.names.Name): the name to acquire credentials for</span>
9898
<span class="sd"> password (bytes): the password used to acquire credentialss with</span>
99-
<span class="sd"> lifetime (int): the lifetime for the credentials (or None for</span>
100-
<span class="sd"> indefinite)</span>
99+
<span class="sd"> lifetime (int): the lifetime for the credentials in seconds (or None</span>
100+
<span class="sd"> for indefinite)</span>
101101
<span class="sd"> mechs (~gssapi.raw.types.MechType): the desired mechanisms for which</span>
102102
<span class="sd"> the credentials should work (or None for the default set)</span>
103103
<span class="sd"> usage (str): usage type for credentials. Possible values:</span>
104104
<span class="sd"> &#39;initiate&#39; (default), &#39;accept&#39;, &#39;both&#39; (failsafe).</span>
105105

106106
<span class="sd"> Returns:</span>
107107
<span class="sd"> AcquireCredResult: the resulting credentials, the actual mechanisms</span>
108-
<span class="sd"> with which they may be used, and their actual lifetime (or None for</span>
109-
<span class="sd"> indefinite or not supported)</span>
108+
<span class="sd"> with which they may be used, and their actual lifetime in seconds (or</span>
109+
<span class="sd"> None for indefinite or not supported)</span>
110110

111111
<span class="sd"> Raises:</span>
112112
<span class="sd"> ~gssapi.exceptions.GSSError</span>

latest/_modules/gssapi/raw/ext_password_add.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,17 @@ <h1>Source code for gssapi.raw.ext_password_add</h1><div class="highlight"><pre>
103103
<span class="sd"> password (bytes): the password used to acquire credentialss with</span>
104104
<span class="sd"> usage (str): the usage type for the credentials: may be</span>
105105
<span class="sd"> &#39;initiate&#39;, &#39;accept&#39;, or &#39;both&#39;</span>
106-
<span class="sd"> init_lifetime (int): the lifetime for the credentials to remain valid</span>
107-
<span class="sd"> when using them to initiate security contexts (or None for</span>
108-
<span class="sd"> indefinite)</span>
109-
<span class="sd"> accept_lifetime (int): the lifetime for the credentials to remain</span>
110-
<span class="sd"> valid when using them to accept security contexts (or None for</span>
111-
<span class="sd"> indefinite)</span>
106+
<span class="sd"> init_lifetime (int): the lifetime, in seconds, for the credentials to</span>
107+
<span class="sd"> remain valid when using them to initiate security contexts (or None</span>
108+
<span class="sd"> for indefinite)</span>
109+
<span class="sd"> accept_lifetime (int): the lifetime, in seconds, for the credentials to</span>
110+
<span class="sd"> remain valid when using them to accept security contexts (or None</span>
111+
<span class="sd"> for indefinite)</span>
112112

113113
<span class="sd"> Returns:</span>
114114
<span class="sd"> AddCredResult: the actual mechanisms with which the credentials may be</span>
115-
<span class="sd"> used, the actual initiator TTL, and the actual acceptor TTL (the TTLs</span>
116-
<span class="sd"> may be None for indefinite or not supported)</span>
115+
<span class="sd"> used, the actual initiator TTL in seconds, and the actual acceptor TTL</span>
116+
<span class="sd"> in seconds (the TTLs may be None for indefinite or not supported)</span>
117117

118118
<span class="sd"> Raises:</span>
119119
<span class="sd"> ~gssapi.exceptions.GSSError</span>

latest/_modules/gssapi/raw/ext_rfc5587.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ <h1>Source code for gssapi.raw.ext_rfc5587</h1><div class="highlight"><pre>
123123
<span class="sd">&quot;&quot;&quot;Returns information about attributes in human readable form.</span>
124124

125125
<span class="sd"> Args:</span>
126-
<span class="sd"> attr (~gssapi.OID): Mechanism attribute to retrive names and</span>
126+
<span class="sd"> attr (~gssapi.OID): Mechanism attribute to retrieve names and</span>
127127
<span class="sd"> descriptions of</span>
128128

129129
<span class="sd"> Returns:</span>

latest/_modules/gssapi/raw/ext_rfc6680.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ <h1>Source code for gssapi.raw.ext_rfc6680</h1><div class="highlight"><pre>
112112
<span class="p">)</span> <span class="o">-&gt;</span> <span class="s2">&quot;InquireNameResult&quot;</span><span class="p">:</span></div>
113113
<span class="sd">&quot;&quot;&quot;Get information about a Name.</span>
114114

115-
<span class="sd"> This method retrives information about the given name, including</span>
115+
<span class="sd"> This method retrieves information about the given name, including</span>
116116
<span class="sd"> the set of attribute names for the given name, as well as whether or</span>
117117
<span class="sd"> not the name is a mechanism name. Additionally, if the given name is</span>
118118
<span class="sd"> a mechanism name, the associated mechansim is returned as well.</span>

0 commit comments

Comments
 (0)