Remove outdated TODO's 00/91800/1
authorDariusz Michaluk <d.michaluk@samsung.com>
Tue, 11 Oct 2016 11:02:21 +0000 (13:02 +0200)
committerDariusz Michaluk <d.michaluk@samsung.com>
Tue, 11 Oct 2016 11:02:21 +0000 (13:02 +0200)
Change-Id: I2a0d00923ffa4f105461a7ee2bc6bb025c6bdb82

src/key.c
todo.txt [deleted file]

index 0c04179ca3d00bff604d59b77741fb9d4afd3c64..404840a3e5f647975d4ccb1163ccd81714ffe7c0 100644 (file)
--- a/src/key.c
+++ b/src/key.c
@@ -1926,7 +1926,7 @@ API int yaca_key_derive_pbkdf2(const char *password,
                return ret;
 
        nk->bit_len = key_bit_len;
-       nk->key.type = YACA_KEY_TYPE_SYMMETRIC; // TODO: how to handle other keys?
+       nk->key.type = YACA_KEY_TYPE_SYMMETRIC;
 
        ret = PKCS5_PBKDF2_HMAC(password, -1, (const unsigned char*)salt,
                                salt_len, iterations, md, key_byte_len,
diff --git a/todo.txt b/todo.txt
deleted file mode 100644 (file)
index 78272ad..0000000
--- a/todo.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-Global:
-- Rethink and possibly add verification of output buffer lengths.
-  In other words check whether the user won't cause a buffer overflow.
-- Support for OCB mode was added in OpenSSL 1.1.0
-- We need a way to import keys encrypted with hw (or other) keys. New
-  function like yaca_key_load or sth?
-- Add extended description and examples in documentation.