Add newline at the end of file.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos 2022-08-13 23:31:09 +02:00
parent 349df56b09
commit 6956587106
No known key found for this signature in database
GPG Key ID: C0095B7870A4CCD3
11 changed files with 11 additions and 11 deletions

View File

@ -52,4 +52,4 @@ int cmd_change_pin() {
}
}
return SW_WRONG_P1P2();
}
}

View File

@ -37,4 +37,4 @@ int cmd_delete_file() {
if (delete_file(ef) != CCID_OK)
return SW_EXEC_ERROR();
return SW_OK();
}
}

View File

@ -51,4 +51,4 @@ int cmd_external_authenticate() {
isUserAuthenticated = true;
}
return SW_OK();
}
}

View File

@ -69,4 +69,4 @@ int cmd_extras() {
else
return SW_INCORRECT_P1P2();
return SW_OK();
}
}

View File

@ -157,4 +157,4 @@ int cmd_initialize() {
res_APDU_size = 7;
}
return SW_OK();
}
}

View File

@ -49,4 +49,4 @@ int cmd_key_gen() {
return SW_EXEC_ERROR();
low_flash_available();
return SW_OK();
}
}

View File

@ -90,4 +90,4 @@ int cmd_key_wrap() {
return SW_EXEC_ERROR();
res_APDU_size = wrap_len;
return SW_OK();
}
}

View File

@ -146,4 +146,4 @@ int cmd_keypair_gen() {
apdu.ne = res_APDU_size;
low_flash_available();
return SW_OK();
}
}

View File

@ -87,4 +87,4 @@ int cmd_read_binary() {
}
return SW_OK();
}
}

View File

@ -83,4 +83,4 @@ int cmd_update_ef() {
low_flash_available();
}
return SW_OK();
}
}

View File

@ -55,4 +55,4 @@ int cmd_verify() {
return SW_OK();
}
return SW_REFERENCE_NOT_FOUND();
}
}