added pcpkey_setowner(), removed pcp[pub]key_exists() (unused currently)

This commit is contained in:
TLINDEN
2014-12-14 14:36:08 +01:00
parent 5b63832fc5
commit 6f47b86f98
2 changed files with 12 additions and 29 deletions

View File

@@ -245,34 +245,6 @@ byte *pcppubkey_getchecksum(pcp_pubkey_t *k);
byte *pcpkey_getchecksum(pcp_key_t *k);
/** Checks if a secret key structure is registered in the secret key hash.
Returns a pointer to a pcp_key_t structure if there
exists a secret key structure with the given id in the
secret key hash.
FIXME: needs to be moved to keyhash.h.
\param[in] id A null-terminated char pointer of 17 bytes containing a key-id.
\return Returns a pointer to a pcp_key_t struture or NULL if no key exists.
*/
pcp_key_t *pcpkey_exists(char *id);
/** Checks if a public key structure is registered in the public key hash.
Returns a pointer to a pcp_pubkey_t structure if there
exists a public key structure with the given id in the
public key hash.
FIXME: needs to be moved to keyhash.h.
\param[in] id A null-terminated char pointer of 17 bytes containing a key-id.
\return Returns a pointer to a pcp_pubkey_t struture or NULL if no key exists.
*/
pcp_pubkey_t *pcppubkey_exists(char *id);
pcp_key_t * key2be(pcp_key_t *k);
pcp_key_t *key2native(pcp_key_t *k);
pcp_pubkey_t * pubkey2be(pcp_pubkey_t *k);
@@ -332,6 +304,13 @@ void pcp_dumpkey(pcp_key_t *k);
*/
void pcp_dumppubkey(pcp_pubkey_t *k);
/** Set Owner and Mail.
\param[in] key The secret key structure.
\param[in] owner Owner string.
\param[in] mail Email string.
*/
void pcpkey_setowner(pcp_key_t *key, char *owner, char *mail);
#endif /* _HAVE_PCP_KEYPAIR_H */