mirror of
https://github.com/MacPaw/XADMaster.git
synced 2025-08-28 19:13:49 +02:00
172 lines
3.9 KiB
Objective-C
172 lines
3.9 KiB
Objective-C
/*
|
|
* XAD7ZipAESHandle.m
|
|
*
|
|
* Copyright (c) 2017-present, MacPaw Inc. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*/
|
|
|
|
#import "XAD7ZipAESHandle.h"
|
|
|
|
#import "Crypto/sha.h"
|
|
|
|
@implementation XAD7ZipAESHandle
|
|
|
|
+(int)logRoundsForPropertyData:(NSData *)propertydata
|
|
{
|
|
int length=[propertydata length];
|
|
const uint8_t *bytes=[propertydata bytes];
|
|
|
|
if(length<1) return -1;
|
|
|
|
return bytes[0]&0x3f;
|
|
}
|
|
|
|
+(NSData *)saltForPropertyData:(NSData *)propertydata
|
|
{
|
|
int length=[propertydata length];
|
|
const uint8_t *bytes=[propertydata bytes];
|
|
|
|
if(length<1) return nil;
|
|
|
|
uint8_t flags=bytes[0];
|
|
if(flags&0xc0)
|
|
{
|
|
if(length<2) return nil;
|
|
|
|
if(flags&0x80)
|
|
{
|
|
int saltlength=(bytes[1]>>4)+1;
|
|
if(length<2+saltlength) return nil;
|
|
return [NSData dataWithBytes:&bytes[2] length:saltlength];
|
|
}
|
|
}
|
|
|
|
return [NSData data];
|
|
}
|
|
|
|
+(NSData *)IVForPropertyData:(NSData *)propertydata
|
|
{
|
|
int length=[propertydata length];
|
|
const uint8_t *bytes=[propertydata bytes];
|
|
|
|
if(length<1) return nil;
|
|
|
|
uint8_t flags=bytes[0];
|
|
if(flags&0xc0)
|
|
{
|
|
if(length<2) return nil;
|
|
|
|
int saltlength=0;
|
|
if(flags&0x80) saltlength=(bytes[1]>>4)+1;
|
|
|
|
if(flags&0x40)
|
|
{
|
|
int ivlength=(bytes[1]&0x0f)+1;
|
|
if(length<2+saltlength+ivlength) return nil;
|
|
|
|
return [NSData dataWithBytes:&bytes[2+saltlength] length:ivlength];
|
|
}
|
|
}
|
|
|
|
return [NSData data];
|
|
}
|
|
|
|
+(NSData *)keyForPassword:(NSString *)password salt:(NSData *)salt logRounds:(int)logrounds
|
|
{
|
|
uint8_t key[32];
|
|
|
|
int passchars=[password length];
|
|
int passlength=passchars*2;
|
|
uint8_t passbytes[passlength];
|
|
for(int i=0;i<passchars;i++)
|
|
{
|
|
unichar c=[password characterAtIndex:i];
|
|
passbytes[2*i]=c;
|
|
passbytes[2*i+1]=c>>8;
|
|
}
|
|
|
|
int saltlength=[salt length];
|
|
const uint8_t *saltbytes=[salt bytes];
|
|
|
|
if(logrounds==0x3f)
|
|
{
|
|
int passcopylength=passlength;
|
|
if(passcopylength+saltlength>sizeof(key)) passcopylength=sizeof(key)-saltlength;
|
|
|
|
memset(key,0,sizeof(key));
|
|
memcpy(&key[0],saltbytes,saltlength);
|
|
memcpy(&key[saltlength],passbytes,passcopylength);
|
|
}
|
|
else
|
|
{
|
|
SHA_CTX sha;
|
|
SHA256_Init(&sha);
|
|
|
|
uint64_t numrounds=1LL<<logrounds;
|
|
|
|
for(uint64_t i=0;i<numrounds;i++)
|
|
{
|
|
SHA256_Update(&sha,saltbytes,saltlength);
|
|
SHA256_Update(&sha,passbytes,passlength);
|
|
SHA256_Update(&sha,(uint8_t[8]) {
|
|
i&0xff,(i>>8)&0xff,(i>>16)&0xff,(i>>24)&0xff,
|
|
(i>>32)&0xff,(i>>40)&0xff,(i>>48)&0xff,(i>>56)&0xff,
|
|
},8);
|
|
}
|
|
|
|
SHA256_Final(key,&sha);
|
|
}
|
|
|
|
return [NSData dataWithBytes:key length:sizeof(key)];
|
|
}
|
|
|
|
-(id)initWithHandle:(CSHandle *)handle length:(off_t)length key:(NSData *)keydata IV:(NSData *)ivdata
|
|
{
|
|
if(self=[super initWithParentHandle:handle length:length])
|
|
{
|
|
startoffs=[handle offsetInFile];
|
|
|
|
int ivlength=[ivdata length];
|
|
const uint8_t *ivbytes=[ivdata bytes];
|
|
memset(iv,0,sizeof(iv));
|
|
memcpy(iv,ivbytes,ivlength);
|
|
|
|
const uint8_t *keybytes=[keydata bytes];
|
|
aes_decrypt_key256(keybytes,&aes);
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
-(void)resetBlockStream
|
|
{
|
|
[parent seekToFileOffset:startoffs];
|
|
[self setBlockPointer:buffer];
|
|
memcpy(block,iv,sizeof(iv));
|
|
}
|
|
|
|
-(int)produceBlockAtOffset:(off_t)pos
|
|
{
|
|
int actual=[parent readAtMost:sizeof(buffer) toBuffer:buffer];
|
|
if(actual==0) return -1;
|
|
|
|
aes_cbc_decrypt(buffer,buffer,actual&~15,block,&aes);
|
|
|
|
return actual;
|
|
}
|
|
|
|
@end
|