sprinkle more error strings

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19171 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-11-28 12:00:08 +00:00
parent da9641ef4f
commit 1d8f59cfa1
3 changed files with 40 additions and 67 deletions

View File

@@ -1039,12 +1039,14 @@ _hx509_cert_private_decrypt(hx509_context context,
}
int
_hx509_cert_public_encrypt(const heim_octet_string *cleartext,
_hx509_cert_public_encrypt(hx509_context context,
const heim_octet_string *cleartext,
const hx509_cert p,
heim_oid *encryption_oid,
heim_octet_string *ciphertext)
{
return _hx509_public_encrypt(cleartext, p->data,
return _hx509_public_encrypt(context,
cleartext, p->data,
encryption_oid, ciphertext);
}