summaryrefslogtreecommitdiffstats
path: root/src/keystore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/keystore.c')
-rw-r--r--src/keystore.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/keystore.c b/src/keystore.c
deleted file mode 100644
index c4c7d5e..0000000
--- a/src/keystore.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * keystore - simple keystore
- *
- * Copyright (c) 2015 Pengutronix, Marc Kleine-Budde <kernel@pengutronix.de>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#include <errno.h>
-
-int __attribute__((weak)) keystore_get_secret(const char *name, const unsigned char **key, int *key_len)
-{
- return -ENOENT;
-}