Do not print OPc debug

master
Ismael Gomez 7 years ago
parent 863fe4fcd0
commit 5fe329971a

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

Loading…
Cancel
Save