You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
oscam-emu edited this page Nov 1, 2018
·
1 revision
Syntax for ECM Keys:
T <entitlement> 01 <key>
entitlement (4 bytes) : 8 hex characters - leading zeros can be omitted
key (8 bytes) : key in hex format (16 hex characters)
Example:
entitlement : 00001234
key : 1122334455667788
T 1234 01 1122334455667788
Syntax for EMM (MK) keys:
There are two MK (Master Key) sets of 64 keys each. To distinguish each set a different identifier is used.
T <key index> MK <key>
or
T <key index> MK01 <key>
where:
key index (1 byte) : 64 keys with indexes from 40 to 7F - all must be present
identifier (string) : MK for key set 00 (old) or MK01 for 01 key set (new)
key (8 bytes) : key in hex format (16 hex characters)
Example for MK set:
T 40 MK 1122334455667788
T 41 MK 1122334455667788
.
.
.
T 7F MK 1122334455667788
Example for MK01 set:
T 40 MK01 1122334455667788
T 41 MK01 1122334455667788
.
.
.
T 7F MK01 1122334455667788
Syntax for AES Keys:
T <key index> AES <key>
where:
key index (1 byte) : 32 keys with indexes from 00 to 1F in hex
identifier (string) : AES
key (16 bytes ) : key in hex format (32 hex characters)
Example:
T 00 AES 11223344556677881122334455667788
T 01 AES 11223344556677881122334455667788
.
.
.
T 1F AES 11223344556677881122334455667788