@@ -26,7 +26,7 @@ functions available in the `REALM` object (see gssapi-console.py in
26
26
try ` $ run-lit -e gssapi basic-tutorial.md ` when you have both
27
27
gssapi_console and yalpt installed). Any actions performed using the
28
28
` REALM ` object are not part of the GSSAPI library; the ` REALM ` object
29
- simply contians wrappers to krb5 commands generally run separately from
29
+ simply contains wrappers to krb5 commands generally run separately from
30
30
the application using GSSAPI.
31
31
32
32
Names and Credentials
@@ -36,7 +36,7 @@ Two important concepts in GSSAPI are *names* and *credentials*.
36
36
37
37
* Names* , as the name suggests, identify different entities, be they
38
38
users or services. GSSAPI has the concept of different * name types* .
39
- These represent different types of names and corresponding sytaxes
39
+ These represent different types of names and corresponding syntax
40
40
for representing names as strings.
41
41
42
42
Suppose we wanted to refer to an HTTP server on the current host.
@@ -95,7 +95,7 @@ Credentials have a *usage*: 'accept' for accepting security contexts,
95
95
credentials used for both initiating and accepting security contexts.
96
96
97
97
Credentials also have an associated * name* , * lifetime* (which may
98
- be ` None ` for indefinite), and set of * mechansims * with which the
98
+ be ` None ` for indefinite), and set of * mechanisms * with which the
99
99
credentials are usable:
100
100
101
101
>>> server_creds.usage
@@ -132,7 +132,7 @@ the user's already acquired credentials:
132
132
>>>
133
133
134
134
Just like credentials, security contexts are either initiating
135
- contexts, or accepting contexts (they cannot be both). Initating
135
+ contexts, or accepting contexts (they cannot be both). Initiating
136
136
contexts must specify at least a target name. In this case,
137
137
we indicate that we wish to establish a context with the HTTP server
138
138
from above. The http server can then accept that context:
@@ -186,7 +186,7 @@ messages, or just sign them:
186
186
>>>
187
187
188
188
Manually passing in a second parameter and checking whether or not encryption
189
- was used can get tedious, so python-gssapi provides two convinience methods
189
+ was used can get tedious, so python-gssapi provides two convenience methods
190
190
to help with this: ` encrypt ` and ` decrypt ` . If the context is set up to use
191
191
encryption, they will call ` wrap ` with encryption. If not, they will
192
192
call ` wrap ` without encryption.
0 commit comments