#define LINE_LENGTH 1024
| struct VerifySignObject | |
| { | |
| char iDocSigFilename[1024]; | |
| char iSigFilename[1024]; | |
| char outputPath[1024]; | |
| char oStream[1024]; | |
| char keyRing[1024]; | |
| int isValid; | |
| u32 keyID; | |
| struct VerifySignObject* next; | |
| struct VerifySignObject* inner; | |
| } |
| struct ReadCryptedObject | |
| { | |
| char iFilename[1024]; | |
| char oStream[1024]; | |
| char keyRing[1024]; | |
| int isValid; | |
| u32 keyID; | |
| } |
| struct ImportKeyObject | |
| { | |
| char iFilename[1024]; | |
| char keyRing[1024]; | |
| int rc; | |
| u32 keyID; | |
| char fingerPrint[255]; | |
| } |
| struct RemoveKeyObject | |
| { | |
| char iFilename[1024]; | |
| char keyRing[1024]; | |
| int rc; | |
| u32 keyID; | |
| } |