-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
44 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include "client_counter.h" | ||
#include "wolfhsm/wh_error.h" | ||
|
||
int client_counter_demo(whClientContext* clientContext) | ||
{ | ||
return WH_ERROR_OK; | ||
} |
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,7 @@ | ||
#ifndef CLIENT_COUNTER_H | ||
#define CLIENT_COUNTER_H | ||
#include "wolfhsm/wh_client.h" | ||
|
||
int client_counter_demo(whClientContext* clientContext); | ||
|
||
#endif /* CLIENT_COUNTER_H */ |
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,7 @@ | ||
#include "client_crypto.h" | ||
#include "wolfhsm/wh_error.h" | ||
|
||
int client_crypto_demo(whClientContext* clientContext); | ||
{ | ||
return WH_ERROR_OK; | ||
} |
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,7 @@ | ||
#ifndef CLIENT_CRYPTO_H_ | ||
#define CLIENT_CRYPTO_H_ | ||
#include "wolfhsm/wh_client.h" | ||
|
||
int client_crypto_demo(whClientContext* clientContext); | ||
|
||
#endif /* CLIENT_CRYPTO_H_ */ |
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,6 @@ | ||
#include "client_keystore.h" | ||
|
||
int client_keystore_demo(whClientContext* clientContext) | ||
{ | ||
return WH_ERROR_OK; | ||
} |
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,7 @@ | ||
#ifndef CLIENT_KEYSTORE_H_ | ||
#define CLIENT_KEYSTORE_H_ | ||
#include "wolfhsm/wh_client.h" | ||
|
||
int client_keystore_demo(whClientContext* clientContext); | ||
|
||
#endif /* CLIENT_KEYSTORE_H_ */ |
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