From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 2181F93CE for ; Wed, 25 Nov 2015 18:45:37 +0100 (CET) Received: by wmec201 with SMTP id c201so267554220wme.0 for ; Wed, 25 Nov 2015 09:45:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=Kek88/TN31YDw+MEiKHxXOWq1n5bOxlkul3gxBHsvJA=; b=LBwmHTdoxscy+wFxsXaBILXhzAwVpZVVw7/kO+a49ClSGU2s0iEmG4ARClrZKEHE18 +1sy7GJKHPdm1jPLDcg+vR3LCEYArWxWrqn7cT1v+O6pdsPt9hBIMD4I4ViYCEQ1+c75 1zK5ldN4wQSfu8DkCc5MyMjYLct3G7TzB7vG+NmqRjoBWnu7ql0luz7mvqMqNXOdN7Gu nhH0Cd6gPLIX8LGi/R57Z8L9ocgz6FPYZx8aQpmpBQLXD5kJ8J3bvhrA4pW2AXAp8c34 W985z3k8KHbgwZKGDGDRK393FuUoca55FSe6cuoH2FovbLaQrDoYriUu0dLmEB6eVzkp wpKw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=Kek88/TN31YDw+MEiKHxXOWq1n5bOxlkul3gxBHsvJA=; b=ewRk0cuLq9e9MxTvy0UOrzEvnhyuU9D8rJlFORkhdHS1DDymiddAk2DngQgK6tkYJI qNrRfLy5VvxytgZCO/ihaM2KO+d+aM6mLdU9SJAeUfNRSf263e6j73cwia7Fn+jA+Z5O 2O8m28OsDf/xxEvULVWZqwPKxrahAqSGmruhc3sOa9In8Ae3DfZTKZbYiVeuwt+iLb2K dgUFKx3YjiP5u/5yU6oN99rM9IAA4X7P8oeT+IRpGPaQw/iSVqvKXl2PUWTGZVrvOBCf ih+fmYz1pQ32+b5usZWMcYWTvOSMxzTkj9SJPPLW9aaFujNWxMbO7OrdZrf+VyC38gcv qN9g== X-Gm-Message-State: ALoCoQlYpqKXEeWz0z3F1eDZYRNGT5EG5+woaAIRxfZNlSaFJp7RTjTLeskm7Wbbja0JL5bhchQA X-Received: by 10.28.14.209 with SMTP id 200mr6160968wmo.103.1448473536938; Wed, 25 Nov 2015 09:45:36 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id u185sm4533619wmu.19.2015.11.25.09.45.35 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 25 Nov 2015 09:45:36 -0800 (PST) From: Thomas Monjalon To: Declan Doherty Date: Wed, 25 Nov 2015 18:44:15 +0100 Message-ID: <1898375.FiD9IpFXuR@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1448457917-27695-1-git-send-email-declan.doherty@intel.com> References: <1447441090-8129-1-git-send-email-declan.doherty@intel.com> <1448457917-27695-1-git-send-email-declan.doherty@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v8 00/10] Crypto API and device framework X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Nov 2015 17:45:37 -0000 2015-11-25 13:25, Declan Doherty: > This series of patches defines a set of application burst oriented APIs for > asynchronous symmetric cryptographic functions within DPDK. It also contains a > poll mode driver cryptographic device framework for the implementation of > crypto devices within DPDK. > > In the patch set we also have included 2 reference implementations of crypto > PMDs. Currently both implementations support AES-CBC with > HMAC_SHA1/SHA256/SHA512 authentication operations. The first device is a purely > software PMD based on Intel's multi-buffer library, which utilises both > AES-NI instructions and vector operations to accelerate crypto operations and > the second PMD utilises Intel's Quick Assist Technology (on DH895xxC) to > provide hardware accelerated crypto operations. After rebase, small fixes in configs and MAINTAINERS, Applied, thanks It is marked as experimental in the documentation and configs. The API needs to be more tested, discussed and documented. So it is not stable and no deprecation process is needed to make some changes.