summaryrefslogtreecommitdiffstats
path: root/doc/api
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-02-08 01:31:18 +0000
committerChris Provenzano <proven@mit.edu>1995-02-08 01:31:18 +0000
commit4650d27e07c121727777574369bd4db462295010 (patch)
tree8064d0c4ec5538f142f00934c7285702751eb894 /doc/api
parent5e19e6cc2a2d0d2d06d955b23583c6ee4f607822 (diff)
downloadkrb5-4650d27e07c121727777574369bd4db462295010.tar.gz
krb5-4650d27e07c121727777574369bd4db462295010.tar.xz
krb5-4650d27e07c121727777574369bd4db462295010.zip
* krb5.tex Documented API changes to krb5_get_in_tkt*() routines
and added krb5_get_in_tkt_with_keytab(). The explanation of each of these routines still needs appropriate changes. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4915 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/ChangeLog6
-rw-r--r--doc/api/krb5.tex42
2 files changed, 38 insertions, 10 deletions
diff --git a/doc/api/ChangeLog b/doc/api/ChangeLog
index 738c7688cf..df3ab57d7d 100644
--- a/doc/api/ChangeLog
+++ b/doc/api/ChangeLog
@@ -1,3 +1,9 @@
+Tue Feb 07 18:31:58 1995 Chris Provenzano (proven@mit.edu)
+
+ * krb5.tex Documented API changes to krb5_get_in_tkt*() routines
+ and added krb5_get_in_tkt_with_keytab(). The explanation of
+ each of these routines still needs appropriate changes.
+
Thu Feb 02 22:59:41 1995 Chris Provenzano (proven@mit.edu)
* krb5.tex Documented change of krb5_enctype to krb5_enctypes
diff --git a/doc/api/krb5.tex b/doc/api/krb5.tex
index 460fd0a46e..ab7b93d6b2 100644
--- a/doc/api/krb5.tex
+++ b/doc/api/krb5.tex
@@ -246,14 +246,13 @@ Returns errors from encryption routines, system errors.
\begin{funcdecl}{krb5_get_in_tkt}{krb5_error_code}{\funcin}
\funcarg{const krb5_flags}{options}
\funcarg{krb5_address * const *}{addrs}
-\funcarg{const krb5_preauthtype}{pre_auth_type}
-\funcarg{const krb5_enctype}{etype}
-\funcarg{const krb5_keytype}{keytype}
+\funcarg{const krb5_enctype *}{etypes}
+\funcarg{const krb5_preauthtype *}{pre_auth_types}
\funcfuncarg{krb5_error_code}{(*key_proc)}
\funcarg{const krb5_keytype}{type}
- \funcarg{krb5_keyblock **}{key}
+ \funcarg{krb5_pa_data *}{salt}
\funcarg{krb5_const_pointer}{keyseed}
- \funcarg{krb5_pa_data **}{padata}
+ \funcarg{krb5_keyblock **}{key}
\funcendfuncarg
\funcarg{krb5_const_pointer}{keyseed}
\funcfuncarg{krb5_error_code}{(*decrypt_proc)}
@@ -270,6 +269,7 @@ Returns errors from encryption routines, system errors.
All-purpose initial ticket routine, usually called via
\funcname{krb5_get_in_tkt_with_password} or
+\funcname{krb5_get_in_tkt_with_keytab} or
\funcname{krb5_get_in_tkt_with_skey}.
@@ -340,9 +340,8 @@ Returns system errors, preauthentication errors, encryption errors.
\begin{funcdecl}{krb5_get_in_tkt_with_password}{krb5_error_code}{\funcin}
\funcarg{const krb5_flags}{options}
\funcarg{krb5_address * const *}{addrs}
-\funcarg{const krb5_preauthtype}{pre_auth_type}
-\funcarg{const krb5_enctype}{etype}
-\funcarg{const krb5_keytype}{keytype}
+\funcarg{const krb5_enctype *}{etypes}
+\funcarg{const krb5_preauthtype *}{pre_auth_types}
\funcarg{const char *}{password}
\funcarg{krb5_ccache}{ccache}
\funcinout
@@ -366,11 +365,34 @@ See \funcname{krb5_get_in_tkt} for documentation of the
Returns system errors, preauthentication errors, encryption errors.
+\begin{funcdecl}{krb5_get_in_tkt_with_keytab}{krb5_error_code}{\funcin}
+\funcarg{const krb5_flags}{options}
+\funcarg{krb5_address * const *}{addrs}
+\funcarg{const krb5_enctype *}{etypes}
+\funcarg{const krb5_preauthtype *}{pre_auth_types}
+\funcarg{const krb5_keytab *}{keytab}
+\funcarg{krb5_ccache}{ccache}
+\funcinout
+\funcarg{krb5_creds *}{creds}
+\funcarg{krb5_kdc_rep **}{ret_as_reply}
+\end{funcdecl}
+
+Attempts to get an initial ticket using \funcparam{keytab}. If
+\funcparam{keytab} is NULL, the default keytab is used
+(e.g., \filename{/etc/v5srvtab}).
+
+See \funcname{krb5_get_in_tkt} for documentation of the
+\funcparam{options}, \funcparam{addrs}, \funcparam{pre_auth_type},
+\funcparam{etype}, \funcparam{ccache}, \funcparam{creds} and
+\funcparam{ret_as_reply} arguments.
+
+Returns system errors, preauthentication errors, encryption errors.
+
\begin{funcdecl}{krb5_get_in_tkt_with_skey}{krb5_error_code}{\funcin}
\funcarg{const krb5_flags}{options}
\funcarg{krb5_address * const *}{addrs}
-\funcarg{const krb5_preauthtype}{pre_auth_type}
-\funcarg{const krb5_enctype}{etype}
+\funcarg{const krb5_enctype *}{etypes}
+\funcarg{const krb5_preauthtype *}{pre_auth_types}
\funcarg{const krb5_keyblock *}{key}
\funcarg{krb5_ccache}{ccache}
\funcinout