summaryrefslogtreecommitdiffstats
path: root/src/keystore.c
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2015-10-16 14:12:41 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2015-10-16 14:12:41 +0200
commitc56aaa8a91602a04a5c42d2dc5f6d810e6323f67 (patch)
treed3eed805db68ac34ed0252a417273d28cff35b06 /src/keystore.c
parentf54a00e158207fb2e13380af48b4b4abcf767f8d (diff)
downloaddt-utils-c56aaa8a91602a04a5c42d2dc5f6d810e6323f67.tar.gz
dt-utils-c56aaa8a91602a04a5c42d2dc5f6d810e6323f67.tar.xz
keystore: add imx6 caam based keystore implementation
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
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;
-}