fixed calls to `krb5_{en,de}crypt'
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2022 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -47,7 +47,7 @@ krb5_mk_priv(krb5_context context,
|
||||
s.enc_part.kvno = NULL;
|
||||
|
||||
r = krb5_encrypt (context, buf + sizeof(buf) - len, len,
|
||||
&auth_context->key, &s.enc_part.cipher);
|
||||
s.enc_part.etype, &auth_context->key, &s.enc_part.cipher);
|
||||
if (r)
|
||||
return r;
|
||||
|
||||
|
@@ -34,6 +34,7 @@ krb5_mk_rep(krb5_context context,
|
||||
ap.enc_part.kvno = NULL;
|
||||
encode_EncAPRepPart (buf + sizeof(buf) - 1, sizeof(buf), &body, &len);
|
||||
ret = krb5_encrypt (context, buf + sizeof(buf) - len, len,
|
||||
ap.enc_part.etype,
|
||||
&(*auth_context)->key, &ap.enc_part.cipher);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
@@ -26,6 +26,7 @@ krb5_rd_priv(krb5_context context,
|
||||
r = krb5_decrypt (context,
|
||||
priv.enc_part.cipher.data,
|
||||
priv.enc_part.cipher.length,
|
||||
priv.enc_part.etype,
|
||||
&auth_context->key,
|
||||
&plain);
|
||||
if (r)
|
||||
|
Reference in New Issue
Block a user