Remove some TODO's. 43/71843/1
authorDariusz Michaluk <d.michaluk@samsung.com>
Fri, 27 May 2016 09:44:27 +0000 (11:44 +0200)
committerDariusz Michaluk <d.michaluk@samsung.com>
Fri, 27 May 2016 09:44:27 +0000 (11:44 +0200)
Change-Id: Ic92d916f018078d1539132e0e44bd07de3e0d00c

api/yaca/seal.h
api/yaca/types.h
examples/digest.c
examples/sign.c
src/internal.h

index bbf4ee7..2940f01 100644 (file)
@@ -36,9 +36,9 @@ extern "C" {
  *
  * TODO: extended description and examples.
  *
- * TODO: Seal does more than just encrypt. It first generates the encryption key and IV,
- * then encrypts whole message using this key (and selected symmetric algorithm).
- * Finally it encrypts symmetric key with public key.
+ * @remarks Seal does more than just encrypt. It first generates the encryption key and IV,
+ *          then encrypts whole message using this key (and selected symmetric algorithm).
+ *          Finally it encrypts symmetric key with public key.
  *
  * @{
  */
index 7ba8cd7..0baf11c 100644 (file)
@@ -92,7 +92,6 @@ typedef enum {
        YACA_KEY_TYPE_DH_PRIV,     /**< Diffie-Hellman private key */
 
        YACA_KEY_TYPE_EC_PUB,      /**< Elliptic Curve public key (for DSA and DH) */
-
        YACA_KEY_TYPE_EC_PRIV,     /**< Elliptic Curve private key (for DSA and DH) */
 } yaca_key_type_e;
 
index 76f0f12..9e01fc1 100644 (file)
@@ -91,6 +91,6 @@ int main()
 
        digest_advanced();
 
-       yaca_exit(); // TODO: what about handing of return value from exit??
+       yaca_exit();
        return ret;
 }
index fe56c51..a6f4ee8 100644 (file)
@@ -373,6 +373,6 @@ int main()
        sign_verify_hmac();
        sign_verify_cmac();
 
-       yaca_exit(); // TODO: what about handing of return value from exit??
+       yaca_exit();
        return ret;
 }
index c010335..16b8b38 100644 (file)
@@ -82,8 +82,11 @@ struct yaca_key_simple_s
  * - YACA_KEY_TYPE_RSA_PRIV
  * - YACA_KEY_TYPE_DSA_PUB
  * - YACA_KEY_TYPE_DSA_PRIV
+ * - YACA_KEY_TYPE_DH_PUB
+ * - YACA_KEY_TYPE_DH_PRIV
+ * - YACA_KEY_TYPE_EC_PUB
+ * - YACA_KEY_TYPE_EC_PRIV
  *
- * TODO: and possibly others (for every key that uses EVP_PKEY)
  */
 struct yaca_key_evp_s
 {