// // DeviceIdentifier.h // Created by EonaCat // Copyright 2013 EonaCat. All rights reserved. // #import @interface UIDevice (IdentifierAddition) // Generate a sha1 hash of your MAC address with your bundle app identifier - (NSString*) appIdentifier; // Generate a sha1 hash of your MAC address - (NSString*) deviceIdentifier; // Get the MAC address - (NSString*) macAddress; @end