pbp key support were still incompatible. now I can at least import pbp keys.

This commit is contained in:
git@daemon.de
2014-01-30 14:33:59 +01:00
parent a822851c14
commit bf0e592a03
3 changed files with 33 additions and 45 deletions

View File

@@ -105,12 +105,11 @@ struct _pcp_pubkey_t {
};
// the PBP public key format
// keys.mp+keys.cp+keys.sp+keys.name
struct _pbp_pubkey_t {
byte sigpub[crypto_box_PUBLICKEYBYTES];
byte edpub[crypto_sign_PUBLICKEYBYTES];
byte sigpub[crypto_sign_PUBLICKEYBYTES];
byte pub[crypto_box_PUBLICKEYBYTES];
char iso_ctime[32];
char iso_expire[32];
byte edpub[crypto_sign_PUBLICKEYBYTES];
char name[1024];
};