mirror of https://github.com/opa334/TrollStore.git
Sync with ChOma
This commit is contained in:
parent
33f1d47d4c
commit
160191bd34
|
@ -153,11 +153,8 @@ int apply_coretrust_bypass(const char *machoPath)
|
|||
// Otherwise use the main code directory
|
||||
realCodeDirBlob = mainCodeDirBlob;
|
||||
}
|
||||
|
||||
CS_CodeDirectory *realCD = malloc(sizeof(CS_CodeDirectory));
|
||||
csd_blob_read(realCodeDirBlob, 0, sizeof(CS_CodeDirectory), realCD);
|
||||
CODE_DIRECTORY_APPLY_BYTE_ORDER(realCD, BIG_TO_HOST_APPLIER);
|
||||
if (realCD->hashType != CS_HASHTYPE_SHA256_256) {
|
||||
|
||||
if (csd_code_directory_get_hash_type(realCodeDirBlob) != CS_HASHTYPE_SHA256_256) {
|
||||
printf("Error: Alternate code directory is not SHA256, bypass won't work!\n");
|
||||
return -1;
|
||||
}
|
||||
|
@ -180,6 +177,7 @@ int apply_coretrust_bypass(const char *machoPath)
|
|||
csd_superblob_remove_blob(decodedSuperblob, signatureBlob);
|
||||
csd_blob_free(signatureBlob);
|
||||
}
|
||||
|
||||
// Append new template blob
|
||||
signatureBlob = csd_blob_init(CSSLOT_SIGNATURESLOT, (CS_GenericBlob *)TemplateSignatureBlob);
|
||||
csd_superblob_append_blob(decodedSuperblob, signatureBlob);
|
||||
|
|
Loading…
Reference in New Issue