Mi6paulino commited on
Commit
412d41a
·
verified ·
1 Parent(s): 143deae

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -9,6 +9,14 @@ app_file: app.py
9
  pinned: false
10
  license: bigscience-bloom-rail-1.0
11
  short_description: 'Brief rearrangement of Open source code from #michaelpaulino'
12
- ---
 
 
 
 
 
 
 
 
13
 
14
  An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
 
9
  pinned: false
10
  license: bigscience-bloom-rail-1.0
11
  short_description: 'Brief rearrangement of Open source code from #michaelpaulino'
12
+ ---#ifndef ECDSA_H
13
+ #define ECDSA_H
14
+
15
+ #include <stdint.h>
16
+ #include <stdbool.h>
17
+
18
+ bool ecdsa_verify(const uint8_t *data, uint32_t data_len, const uint8_t *signature, const uint8_t *public_key);
19
+
20
+ #endif // ECDSA_H
21
 
22
  An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).