smp_calculate_f5_mackey_or_long_term_key() function
* Function smp_calculate_f5_mackey_or_long_term_key * Description The function calculates the value of MacKey or LTK by the rules * defined for f5 function. * At the moment exactly the same formula is used to calculate * LTK and MacKey. * The difference is the value of input parameter Counter: * - in MacKey calculations the value is 0; * - in LTK calculations the value is 1. * The formula: * mac = AES-CMAC (Counter||keyID||N1||N2||A1||A2||Length) * T * where * input: T is 256 bits; * Counter is 8 bits, its value is 0 for MacKey, * 1 for LTK; * keyID is 32 bits, its value is 0x62746c65; * N1 is 128 bits; * N2 is 128 bits; * A1 is 56 bits; * A2 is 56 bits; * Length is 16 bits, its value is 0x0100 * output: LTK is 128 bit. * Returns FALSE if out of resources, TRUE in other cases. * Note The LSB is the first octet, the MSB is the last octet of * the AES-CMAC input/output stream.