-
Notifications
You must be signed in to change notification settings - Fork 0
/
PDFEncryptionUtils.h
54 lines (35 loc) · 947 Bytes
/
PDFEncryptionUtils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#import <Foundation/Foundation.h>
#import <openssl/md5.h>
#import <openssl/aes.h>
#import <XADMaster/CSHandle.h>
#import <XADMaster/CSBlockStreamHandle.h>
extern NSString *PDFMD5FinishedException;
@interface PDFMD5Engine:NSObject
{
MD5_CTX md5;
unsigned char digest_bytes[16];
BOOL done;
}
+(PDFMD5Engine *)engine;
+(NSData *)digestForData:(NSData *)data;
+(NSData *)digestForBytes:(const void *)bytes length:(int)length;
-(id)init;
-(void)updateWithData:(NSData *)data;
-(void)updateWithBytes:(const void *)bytes length:(unsigned long)length;
-(NSData *)digest;
-(NSString *)hexDigest;
-(NSString *)description;
@end
@interface PDFAESHandle:CSBlockStreamHandle
{
CSHandle *parent;
off_t startoffs;
NSData *key,*iv;
AES_KEY aeskey;
uint8_t ivbuffer[16],streambuffer[16];
}
-(id)initWithHandle:(CSHandle *)handle key:(NSData *)keydata;
-(void)dealloc;
-(void)resetBlockStream;
-(int)produceBlockAtOffset:(off_t)pos;
@end