Revert "Do not print OPc debug"

This reverts commit 5fe329971a.
This commit is contained in:
Pedro Alvarez 2018-06-19 18:14:09 +01:00
parent 4eb9d1abac
commit c717148d54
1 changed files with 19 additions and 7 deletions

View File

@ -1124,11 +1124,14 @@ LIBLTE_ERROR_ENUM liblte_security_milenage_f1(uint8 *k,
rijndael_key_schedule(k, &round_keys);
// Compute OPc
printf("OPc 0x: ");
for(i=0;i<16;i++)
{
{
op_c[i] = op[i];
}
printf("%02x", op_c[i]);
}
printf("\n");
//compute_OPc(&round_keys, op, op_c);
// Compute temp
@ -1212,11 +1215,14 @@ LIBLTE_ERROR_ENUM liblte_security_milenage_f1_star(uint8 *k,
// Initialize the round keys
rijndael_key_schedule(k, &round_keys);
printf("OPc 0x: ");
for(i=0;i<16;i++)
{
op_c[i] = op[i];
printf("%02x", op_c[i]);
}
printf("\n");
// Compute OPc
//compute_OPc(&round_keys, op, op_c);
@ -1304,10 +1310,13 @@ LIBLTE_ERROR_ENUM liblte_security_milenage_f2345(uint8 *k,
// Compute OPc
//compute_OPc(&round_keys, op, op_c);
printf("OPc 0x: ");
for(i=0;i<16;i++)
{
op_c[i] = op[i];
printf("%02x", op_c[i]);
}
printf("\n");
// Compute temp
for(i=0; i<16; i++)
{
@ -1412,11 +1421,14 @@ LIBLTE_ERROR_ENUM liblte_security_milenage_f5_star(uint8 *k,
// Compute OPc
//compute_OPc(&round_keys, op, op_c);
printf("OPc 0x: ");
for(i=0;i<16;i++)
{
{
op_c[i] = op[i];
}
printf("%02x", op_c[i]);
}
printf("\n");
// Compute temp
for(i=0; i<16; i++)
{