]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - crypto.h
blind_id: rework of keygen to be able to save an unsigned key
[xonotic/darkplaces.git] / crypto.h
index 7edfcd98a389af04ed25559a62de798ebb2fa851..ddc00a92cd24e00455e4a69b30acecd120ca7548 100644 (file)
--- a/crypto.h
+++ b/crypto.h
@@ -54,7 +54,7 @@ const char *Crypto_GetInfoResponseDataString(void);
 // retrieves a host key for an address (can be exposed to menuqc, or used by the engine to look up stored keys e.g. for server bookmarking)
 // pointers may be NULL
 qboolean Crypto_RetrieveHostKey(lhnetaddress_t *peeraddress, int *keyid, char *keyfp, size_t keyfplen, char *idfp, size_t idfplen, int *aeslevel);
-int Crypto_RetrieveLocalKey(int keyid, char *keyfp, size_t keyfplen, char *idfp, size_t idfplen); // return value: -1 if more to come, +1 if valid, 0 if end of list
+int Crypto_RetrieveLocalKey(int keyid, char *keyfp, size_t keyfplen, char *idfp, size_t idfplen, qboolean *issigned); // return value: -1 if more to come, +1 if valid, 0 if end of list
 
 size_t Crypto_SignData(const void *data, size_t datasize, int keyid, void *signed_data, size_t signed_size);
 size_t Crypto_SignDataDetached(const void *data, size_t datasize, int keyid, void *signed_data, size_t signed_size);