mirror of
https://github.com/mikecarper/MeshCore.git
synced 2026-09-16 06:32:35 +00:00
11 lines
158 B
C++
11 lines
158 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class Ed25519 {
|
|
public:
|
|
static bool verify(const uint8_t*, const uint8_t*, const uint8_t*, int) {
|
|
return true;
|
|
}
|
|
};
|