prefix der primitives with der_

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18453 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-10-14 09:42:43 +00:00
parent dcc23a24d0
commit 96204e40a8
10 changed files with 129 additions and 128 deletions

View File

@@ -102,7 +102,7 @@ free_private_key(struct private_key *key)
free_AlgorithmIdentifier(&key->alg);
if (key->private_key)
_hx509_free_private_key(&key->private_key);
free_octet_string(&key->localKeyId);
der_free_octet_string(&key->localKeyId);
free(key);
}
@@ -141,7 +141,7 @@ _hx509_collector_private_key_add(struct hx509_collector *c,
goto out;
}
if (localKeyId) {
ret = copy_octet_string(localKeyId, &key->localKeyId);
ret = der_copy_octet_string(localKeyId, &key->localKeyId);
if (ret)
goto out;
} else