Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2002-10-31 00:51:56 +0300
committerKent Mein <mein@cs.umn.edu>2002-10-31 00:51:56 +0300
commit0bca79288003053c8c55e00b13e8e910d390eb47 (patch)
tree66b676dbf3d36f44f8e0e6d8508e8ee77bf67a0c /source/blender/verify/BLO_sign_verify_Header.h
parent59e07ab2a54fdfc38d1af78212b3ea7a13717024 (diff)
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
Diffstat (limited to 'source/blender/verify/BLO_sign_verify_Header.h')
-rw-r--r--source/blender/verify/BLO_sign_verify_Header.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/source/blender/verify/BLO_sign_verify_Header.h b/source/blender/verify/BLO_sign_verify_Header.h
index 0d2ddc2e7e7..8f26eed95aa 100644
--- a/source/blender/verify/BLO_sign_verify_Header.h
+++ b/source/blender/verify/BLO_sign_verify_Header.h
@@ -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