[RFC] cryptodev: add basic asymmetric crypto capability structs

Message ID 20220408140518.24634-1-arkadiuszx.kusztal@intel.com (mailing list archive)
State RFC, archived
Delegated to: akhil goyal
Headers
Series [RFC] cryptodev: add basic asymmetric crypto capability structs |

Checks

Context Check Description
ci/checkpatch warning coding style issues
ci/Intel-compilation success Compilation OK
ci/intel-Testing success Testing PASS

Commit Message

Arkadiusz Kusztal April 8, 2022, 2:05 p.m. UTC
  This commit adds basic structs to handle asymmetric crypto capability.

Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
---
 lib/cryptodev/rte_crypto_asym.h | 47 +++++++++++++++++++++++++++++++++
 lib/cryptodev/rte_cryptodev.h   |  8 ++++++
 2 files changed, 55 insertions(+)
  

Comments

Akhil Goyal May 16, 2022, 6:54 p.m. UTC | #1
Hi Arek,

Are you planning for a formal patch for adding asym capabilities?

> This commit adds basic structs to handle asymmetric crypto capability.
> 
> Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
> ---
>  lib/cryptodev/rte_crypto_asym.h | 47 +++++++++++++++++++++++++++++++++
>  lib/cryptodev/rte_cryptodev.h   |  8 ++++++
>  2 files changed, 55 insertions(+)
> 
> diff --git a/lib/cryptodev/rte_crypto_asym.h b/lib/cryptodev/rte_crypto_asym.h
> index cd24d4b07b..2d58fffee5 100644
> --- a/lib/cryptodev/rte_crypto_asym.h
> +++ b/lib/cryptodev/rte_crypto_asym.h
> @@ -386,6 +386,26 @@ struct rte_crypto_rsa_op_param {
>  	 */
>  };
> 
> +struct rte_crypto_rsa_capability {
> +	uint64_t padding_type;
> +	/* Supported padding */
> +	union {
> +		uint64_t hash;
> +		/* Supported hash functions, at least one
> +		 * shall be supported */
> +		uint64_t mgf;
> +		/* Supported masdk generation functions,
> +		 * at least one shall be supported */
> +	} padding;
> +	uint32_t max_key_len;
> +	/* Maximum supported key length */
> +	uint8_t sign_message;
> +	/* If zero input should contain message digest,
> +	 * otherwise it should be plain message */
> +	uint8_t pkcs_plain_padding;
> +	/* PKCS1_5 padding without algorithm identifier */
> +};
> +
>  /**
>   * Diffie-Hellman Operations params.
>   * @note:
> @@ -416,6 +436,19 @@ struct rte_crypto_dh_op_param {
>  	 */
>  };
> 
> +struct rte_crypto_dh_capability {
> +	union {
> +		uint32_t group_size;
> +		/**< Maximum size of underliying mod group */
> +		uint64_t curves;
> +		/**< Supported elliptic curve ids */
> +		/* uint64_t fixed_groups; ? */
> +		/**< Supported fixed groups */
> +		/* uint8_t custom_curves; ? */
> +		/**< Supported custom curves */
> +	};
> +};
> +
>  /**
>   * DSA Operations params
>   *
> @@ -484,6 +517,13 @@ struct rte_crypto_ecdsa_op_param {
>  	 */
>  };
> 
> +struct rte_crypto_ecdsa_capability {
> +	uint64_t curves;
> +	/**< Supported elliptic curve ids */
> +	/* uint8_t custom_curves; ? */
> +	/**< Supported custom curves */
> +};
> +
>  /**
>   * Structure for EC point multiplication operation param
>   */
> @@ -498,6 +538,13 @@ struct rte_crypto_ecpm_op_param {
>  	/**< Scalar to multiply the input point */
>  };
> 
> +struct rte_crypto_ecpm_capability {
> +	uint64_t curves;
> +	/**< Supported elliptic curve ids */
> +	/* uint8_t custom_curves; ? */
> +	/**< Supported custom curves */
> +};
> +
>  /**
>   * Asymmetric crypto transform data
>   *
> diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h
> index 45d33f4a50..79026dbb80 100644
> --- a/lib/cryptodev/rte_cryptodev.h
> +++ b/lib/cryptodev/rte_cryptodev.h
> @@ -176,6 +176,14 @@ struct rte_cryptodev_asymmetric_xform_capability {
>  		/**< Range of modulus length supported by modulus based
> xform.
>  		 * Value 0 mean implementation default
>  		 */
> +		struct rte_crypto_ecdsa_capability ecdsa;
> +		/**< ECDSA capability */
> +		struct rte_crypto_ecpm_capability ecpm;
> +		/**< ECPM capability */
> +		struct rte_crypto_rsa_capability rsa;
> +		/**< RSA capability */
> +		struct rte_crypto_dh_capability dh;
> +		/**< DH capability */
>  	};
>  };
> 
> --
> 2.30.2
  
Arkadiusz Kusztal May 17, 2022, 11:33 a.m. UTC | #2
> -----Original Message-----
> From: Akhil Goyal <gakhil@marvell.com>
> Sent: Monday, May 16, 2022 8:55 PM
> To: Kusztal, ArkadiuszX <arkadiuszx.kusztal@intel.com>; dev@dpdk.org
> Cc: Zhang, Roy Fan <roy.fan.zhang@intel.com>
> Subject: RE: [EXT] [RFC PATCH] cryptodev: add basic asymmetric crypto
> capability structs
> 
> Hi Arek,
> 
> Are you planning for a formal patch for adding asym capabilities?
[Arek] - Yes, I will send one in next few days. But I wanted to have some part of patches initially accepted as I need to reflect API changes there.
> 
> > This commit adds basic structs to handle asymmetric crypto capability.
> >
> > Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
> > ---
> >  lib/cryptodev/rte_crypto_asym.h | 47
> +++++++++++++++++++++++++++++++++
> >  lib/cryptodev/rte_cryptodev.h   |  8 ++++++
> >  2 files changed, 55 insertions(+)
> >
> > diff --git a/lib/cryptodev/rte_crypto_asym.h
> > b/lib/cryptodev/rte_crypto_asym.h index cd24d4b07b..2d58fffee5 100644
> > --- a/lib/cryptodev/rte_crypto_asym.h
> > +++ b/lib/cryptodev/rte_crypto_asym.h
> > @@ -386,6 +386,26 @@ struct rte_crypto_rsa_op_param {
> >  	 */
> >  };
> >
> > +struct rte_crypto_rsa_capability {
> > +	uint64_t padding_type;
> > +	/* Supported padding */
> > +	union {
> > +		uint64_t hash;
> > +		/* Supported hash functions, at least one
> > +		 * shall be supported */
> > +		uint64_t mgf;
> > +		/* Supported masdk generation functions,
> > +		 * at least one shall be supported */
> > +	} padding;
> > +	uint32_t max_key_len;
> > +	/* Maximum supported key length */
> > +	uint8_t sign_message;
> > +	/* If zero input should contain message digest,
> > +	 * otherwise it should be plain message */
> > +	uint8_t pkcs_plain_padding;
> > +	/* PKCS1_5 padding without algorithm identifier */ };
> > +
> >  /**
> >   * Diffie-Hellman Operations params.
> >   * @note:
> > @@ -416,6 +436,19 @@ struct rte_crypto_dh_op_param {
> >  	 */
> >  };
> >
> > +struct rte_crypto_dh_capability {
> > +	union {
> > +		uint32_t group_size;
> > +		/**< Maximum size of underliying mod group */
> > +		uint64_t curves;
> > +		/**< Supported elliptic curve ids */
> > +		/* uint64_t fixed_groups; ? */
> > +		/**< Supported fixed groups */
> > +		/* uint8_t custom_curves; ? */
> > +		/**< Supported custom curves */
> > +	};
> > +};
> > +
> >  /**
> >   * DSA Operations params
> >   *
> > @@ -484,6 +517,13 @@ struct rte_crypto_ecdsa_op_param {
> >  	 */
> >  };
> >
> > +struct rte_crypto_ecdsa_capability {
> > +	uint64_t curves;
> > +	/**< Supported elliptic curve ids */
> > +	/* uint8_t custom_curves; ? */
> > +	/**< Supported custom curves */
> > +};
> > +
> >  /**
> >   * Structure for EC point multiplication operation param
> >   */
> > @@ -498,6 +538,13 @@ struct rte_crypto_ecpm_op_param {
> >  	/**< Scalar to multiply the input point */  };
> >
> > +struct rte_crypto_ecpm_capability {
> > +	uint64_t curves;
> > +	/**< Supported elliptic curve ids */
> > +	/* uint8_t custom_curves; ? */
> > +	/**< Supported custom curves */
> > +};
> > +
> >  /**
> >   * Asymmetric crypto transform data
> >   *
> > diff --git a/lib/cryptodev/rte_cryptodev.h
> > b/lib/cryptodev/rte_cryptodev.h index 45d33f4a50..79026dbb80 100644
> > --- a/lib/cryptodev/rte_cryptodev.h
> > +++ b/lib/cryptodev/rte_cryptodev.h
> > @@ -176,6 +176,14 @@ struct rte_cryptodev_asymmetric_xform_capability {
> >  		/**< Range of modulus length supported by modulus based
> xform.
> >  		 * Value 0 mean implementation default
> >  		 */
> > +		struct rte_crypto_ecdsa_capability ecdsa;
> > +		/**< ECDSA capability */
> > +		struct rte_crypto_ecpm_capability ecpm;
> > +		/**< ECPM capability */
> > +		struct rte_crypto_rsa_capability rsa;
> > +		/**< RSA capability */
> > +		struct rte_crypto_dh_capability dh;
> > +		/**< DH capability */
> >  	};
> >  };
> >
> > --
> > 2.30.2
  

Patch

diff --git a/lib/cryptodev/rte_crypto_asym.h b/lib/cryptodev/rte_crypto_asym.h
index cd24d4b07b..2d58fffee5 100644
--- a/lib/cryptodev/rte_crypto_asym.h
+++ b/lib/cryptodev/rte_crypto_asym.h
@@ -386,6 +386,26 @@  struct rte_crypto_rsa_op_param {
 	 */
 };
 
+struct rte_crypto_rsa_capability {
+	uint64_t padding_type;
+	/* Supported padding */
+	union {
+		uint64_t hash;
+		/* Supported hash functions, at least one
+		 * shall be supported */
+		uint64_t mgf;
+		/* Supported masdk generation functions,
+		 * at least one shall be supported */
+	} padding;
+	uint32_t max_key_len;
+	/* Maximum supported key length */
+	uint8_t sign_message;
+	/* If zero input should contain message digest,
+	 * otherwise it should be plain message */
+	uint8_t pkcs_plain_padding;
+	/* PKCS1_5 padding without algorithm identifier */
+};
+
 /**
  * Diffie-Hellman Operations params.
  * @note:
@@ -416,6 +436,19 @@  struct rte_crypto_dh_op_param {
 	 */
 };
 
+struct rte_crypto_dh_capability {
+	union {
+		uint32_t group_size;
+		/**< Maximum size of underliying mod group */
+		uint64_t curves;
+		/**< Supported elliptic curve ids */
+		/* uint64_t fixed_groups; ? */
+		/**< Supported fixed groups */
+		/* uint8_t custom_curves; ? */
+		/**< Supported custom curves */
+	};
+};
+
 /**
  * DSA Operations params
  *
@@ -484,6 +517,13 @@  struct rte_crypto_ecdsa_op_param {
 	 */
 };
 
+struct rte_crypto_ecdsa_capability {
+	uint64_t curves;
+	/**< Supported elliptic curve ids */
+	/* uint8_t custom_curves; ? */
+	/**< Supported custom curves */
+};
+
 /**
  * Structure for EC point multiplication operation param
  */
@@ -498,6 +538,13 @@  struct rte_crypto_ecpm_op_param {
 	/**< Scalar to multiply the input point */
 };
 
+struct rte_crypto_ecpm_capability {
+	uint64_t curves;
+	/**< Supported elliptic curve ids */
+	/* uint8_t custom_curves; ? */
+	/**< Supported custom curves */
+};
+
 /**
  * Asymmetric crypto transform data
  *
diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h
index 45d33f4a50..79026dbb80 100644
--- a/lib/cryptodev/rte_cryptodev.h
+++ b/lib/cryptodev/rte_cryptodev.h
@@ -176,6 +176,14 @@  struct rte_cryptodev_asymmetric_xform_capability {
 		/**< Range of modulus length supported by modulus based xform.
 		 * Value 0 mean implementation default
 		 */
+		struct rte_crypto_ecdsa_capability ecdsa;
+		/**< ECDSA capability */
+		struct rte_crypto_ecpm_capability ecpm;
+		/**< ECPM capability */
+		struct rte_crypto_rsa_capability rsa;
+		/**< RSA capability */
+		struct rte_crypto_dh_capability dh;
+		/**< DH capability */
 	};
 };