-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve flexibility of command_responce tests using a serialized format
- Loading branch information
1 parent
4454679
commit 2a5ba7d
Showing
3 changed files
with
198 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright (C) 2022 Nitrokey GmbH | ||
// SPDX-License-Identifier: LGPL-3.0-only | ||
|
||
[ | ||
IoTest( | ||
name: "GET CHALLENGE", | ||
cmd_resp: [ | ||
IoData( | ||
input: "00 84 0000 0A", | ||
output: And([NonZero, Len(0x0A)]) | ||
), | ||
IoData( | ||
input: "00 84 0000 00 0400", | ||
output: And([NonZero, Len(0x0400)]) | ||
) | ||
] | ||
), | ||
IoTest( | ||
name: "AES", | ||
cmd_resp: [ | ||
// Verify Admin Pin | ||
IoData(input: "00200083 08 3132333435363738"), | ||
// Verify User Pin | ||
IoData(input: "00200082 06 313233343536"), | ||
// Set aes key | ||
IoData(input: "0C DA 00D5 20 FFEEDDCCBBAA00998877665544332211FFEEDDCCBBAA00998877665544332211"), | ||
// Encrypt with AES | ||
IoData( | ||
input: "00 2A 86 80 10 00112233445566778899AABBCCDDEEFF 00", | ||
output: Data("02 d9d2ca17e160427aee649db6912dbfad"), | ||
), | ||
// Decrypt with AES | ||
IoData( | ||
input: "00 2A 80 86 11 02 d9d2ca17e160427aee649db6912dbfad 00", | ||
output: Data("00112233445566778899AABBCCDDEEFF"), | ||
), | ||
|
||
] | ||
) | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters