push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
diff --git a/libecdsaauth/base64.c b/libecdsaauth/base64.c
index 0f9b7a3..84df22a 100644
--- a/libecdsaauth/base64.c
+++ b/libecdsaauth/base64.c
@@ -45,6 +45,7 @@
#include <string.h>
#include <unistd.h>
#include <assert.h>
+#include <ctype.h>
static const char Base64[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

View File

@@ -0,0 +1,33 @@
diff --git a/libecdsaauth/keypair.c b/libecdsaauth/keypair.c
index 5e098c5..b5dd21e 100644
--- a/libecdsaauth/keypair.c
+++ b/libecdsaauth/keypair.c
@@ -22,6 +22,7 @@
#include <string.h>
#include <stdlib.h>
+#include <openssl/pem.h>
static inline libecdsaauth_key_t *libecdsaauth_key_alloc(void)
{
diff --git a/tool/main.c b/tool/main.c
index 23d19a3..f88016c 100644
--- a/tool/main.c
+++ b/tool/main.c
@@ -21,6 +21,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <openssl/pem.h>
#include "libecdsaauth/keypair.h"
#include "libecdsaauth/op.h"
@@ -41,7 +42,7 @@ static int tool_keygen(int argc, const char *argv[])
key = libecdsaauth_key_new();
pubout = fopen(argv[1], "w");
- PEM_write_ECPrivateKey(pubout, key->eckey, NULL, NULL, 0, NULL);
+ PEM_write_ECPrivateKey(pubout, key->eckey, NULL, NULL, 0, NULL, NULL);
fclose(pubout);
pubkey = libecdsaauth_key_public_key_base64(key);

View File

@@ -0,0 +1,46 @@
{
lib,
stdenv,
pkgs,
}:
stdenv.mkDerivation {
version = "0.0.1";
pname = "ecdsatool";
src = pkgs.fetchFromGitHub {
owner = "kaniini";
repo = "ecdsatool";
rev = "7c0b2c51e2e64d1986ab1dc2c57c2d895cc00ed1";
sha256 = "08z9309znkhrjpwqd4ygvm7cd1ha1qbrnlzw64fr8704jrmx762k";
};
configurePhase = ''
runHook preConfigure
./autogen.sh
./configure --prefix=$out
runHook postConfigure
'';
patches = [
./ctype-header-c99-implicit-function-declaration.patch
./openssl-header-c99-implicit-function-declaration.patch
];
nativeBuildInputs = with pkgs; [
openssl
autoconf
automake
];
buildInputs = with pkgs; [ libuecc ];
meta = with lib; {
description = "Create and manipulate ECC NISTP256 keypairs";
mainProgram = "ecdsatool";
homepage = "https://github.com/kaniini/ecdsatool/";
license = with licenses; [ free ];
platforms = platforms.unix;
};
}