Skip to content

Commit

Permalink
Renaming random.h to examples_util.h
Browse files Browse the repository at this point in the history
Signed-off-by: Harshil Jani <harshiljani2002@gmail.com>
  • Loading branch information
Harshil-Jani committed Mar 1, 2023
1 parent 51ff9bd commit d9dbd2c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/ecdh.c
Expand Up @@ -14,7 +14,7 @@
#include <secp256k1.h>
#include <secp256k1_ecdh.h>

#include "random.h"
#include "examples_util.h"

int main(void) {
unsigned char seckey1[32];
Expand Down
2 changes: 1 addition & 1 deletion examples/ecdsa.c
Expand Up @@ -13,7 +13,7 @@

#include <secp256k1.h>

#include "random.h"
#include "examples_util.h"

int main(void) {
/* Instead of signing the message directly, we must sign a 32-byte hash.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/schnorr.c
Expand Up @@ -15,7 +15,7 @@
#include <secp256k1_extrakeys.h>
#include <secp256k1_schnorrsig.h>

#include "random.h"
#include "examples_util.h"

int main(void) {
unsigned char msg[12] = "Hello World!";
Expand Down

0 comments on commit d9dbd2c

Please sign in to comment.