Skip to content

Commit

Permalink
ERand should not be reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
benbaker76 committed Jan 7, 2022
1 parent 78c8816 commit a737c32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Hackintool.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0383;
CURRENT_PROJECT_VERSION = 0384;
DEVELOPMENT_TEAM = 5LGHPJM9ZR;
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_STRICT_OBJC_MSGSEND = NO;
Expand All @@ -736,7 +736,7 @@
INFOPLIST_FILE = "Hackintool/Hackintool-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.9;
MARKETING_VERSION = 3.8.3;
MARKETING_VERSION = 3.8.4;
PRODUCT_BUNDLE_IDENTIFIER = com.Headsoft.Hackintool;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -757,7 +757,7 @@
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = NO;
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 0383;
CURRENT_PROJECT_VERSION = 0384;
DEVELOPMENT_TEAM = 5LGHPJM9ZR;
ENABLE_HARDENED_RUNTIME = YES;
ENABLE_STRICT_OBJC_MSGSEND = NO;
Expand All @@ -772,7 +772,7 @@
INFOPLIST_FILE = "Hackintool/Hackintool-Info.plist";
LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.9;
MARKETING_VERSION = 3.8.3;
MARKETING_VERSION = 3.8.4;
PRODUCT_BUNDLE_IDENTIFIER = com.Headsoft.Hackintool;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Hackintool/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -10792,7 +10792,7 @@ - (BOOL)parseBluetoothLEWithAddress:(NSString *)address controllerAddressData:(N
NSData *encryptedDiversifier = [remoteEncryptionDictionary objectForKey:@"Encrypted Diversifier"];
NSData *longTermKey = [remoteEncryptionDictionary objectForKey:@"Long-term Key"];
NSData *longTermKeyLength = [remoteEncryptionDictionary objectForKey:@"Long-term Key Length"];
NSData *randomNumber = getReverseData([remoteEncryptionDictionary objectForKey:@"Random Number"]);
NSData *randomNumber = [remoteEncryptionDictionary objectForKey:@"Random Number"];

NSData *remoteIRK = getReverseData([remoteDictionary objectForKey:@"Remote IRK"]);

Expand Down

0 comments on commit a737c32

Please sign in to comment.