# ios-decryption-keys **Repository Path**: pxesrv/ios-decryption-keys ## Basic Information - **Project Name**: ios-decryption-keys - **Description**: Decryption keys for iOS firmwares - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # iOS-decryption-keys #### decryption keys for iOS firmwares (json format). Can be easily read by Python json module. ## Usage: + Read iPad3,1 iOS9.1 DeviceTree key and IV
``` Python import json keylist = json.load(open("firmware-keys-iPad3,1.json")) devicetree_key = keylist['iPad3,1']['9.1']['keys']['devicetree'] devicetree_iv = keylist['iPad3,1']['9.1']['ivs']['devicetree'] print("Key: " + devicetree_key) print(" IV: " + devicetree_iv) ```