@@ -26,7 +26,7 @@ functions available in the `REALM` object (see gssapi-console.py in
2626try ` $ run-lit -e gssapi basic-tutorial.md ` when you have both
2727gssapi_console and yalpt installed). Any actions performed using the
2828` 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
3030the application using GSSAPI.
3131
3232Names and Credentials
@@ -36,7 +36,7 @@ Two important concepts in GSSAPI are *names* and *credentials*.
3636
3737* Names* , as the name suggests, identify different entities, be they
3838users 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
4040for representing names as strings.
4141
4242Suppose 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,
9595credentials used for both initiating and accepting security contexts.
9696
9797Credentials 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
9999credentials are usable:
100100
101101 >>> server_creds.usage
@@ -132,7 +132,7 @@ the user's already acquired credentials:
132132 >>>
133133
134134Just 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
136136contexts must specify at least a target name. In this case,
137137we indicate that we wish to establish a context with the HTTP server
138138from above. The http server can then accept that context:
@@ -186,7 +186,7 @@ messages, or just sign them:
186186 >>>
187187
188188Manually 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
190190to help with this: ` encrypt ` and ` decrypt ` . If the context is set up to use
191191encryption, they will call ` wrap ` with encryption. If not, they will
192192call ` wrap ` without encryption.
0 commit comments