again changing // to /* */ so that sun's compiler doesn't fail.

(note these are all in source/blender/verify)
Sorry about not putting the full path in on the last two,
I just noticed it doesn't do that unless your in the root dir.

mein@cs.umn.edu
This commit is contained in:
2002-10-30 21:51:56 +00:00
parent 59e07ab2a5
commit 0bca792880
3 changed files with 25 additions and 24 deletions

View File

@@ -41,9 +41,10 @@ extern "C" {
#include "BLO_sys_types.h"
#define SIGNVERIFYHEADERSTRUCTSIZE sizeof(struct BLO_sign_verify_HeaderStruct)
// TODO use reasonable sizes
// Tests showed: pubKeyLen 64, cryptedKeyLen 64 bytes
// So we pick 2*64 bytes + tail for now :
/* TODO use reasonable sizes
Tests showed: pubKeyLen 64, cryptedKeyLen 64 bytes
So we pick 2*64 bytes + tail for now : */
#define MAXPUBKEYLEN 130
#define MAXSIGNATURELEN 130
@@ -62,12 +63,12 @@ struct BLO_sign_verify_HeaderStruct {
#define MAXSIGNERLEN 100
struct BLO_SignerHeaderStruct {
uint8_t name[MAXSIGNERLEN]; // the signers name (from the key)
uint8_t email[MAXSIGNERLEN]; // the signers email (from the key)
uint8_t homeUrl[MAXSIGNERLEN]; // the signers home page
uint8_t text[MAXSIGNERLEN]; // optional additional user text
uint8_t pubKeyUrl1[MAXSIGNERLEN]; // the signers pubKey store
uint8_t pubKeyUrl2[MAXSIGNERLEN]; // the signers pubKey at NaN
uint8_t name[MAXSIGNERLEN]; /* the signers name (from the key) */
uint8_t email[MAXSIGNERLEN]; /* the signers email (from the key) */
uint8_t homeUrl[MAXSIGNERLEN]; /* the signers home page */
uint8_t text[MAXSIGNERLEN]; /* optional additional user text */
uint8_t pubKeyUrl1[MAXSIGNERLEN]; /* the signers pubKey store */
uint8_t pubKeyUrl2[MAXSIGNERLEN]; /* the signers pubKey at NaN */
};
#ifdef __cplusplus