From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-la0-f42.google.com (mail-la0-f42.google.com [209.85.215.42]) by dpdk.org (Postfix) with ESMTP id 58C18683D for ; Thu, 2 Apr 2015 00:54:28 +0200 (CEST) Received: by lahf3 with SMTP id f3so47284154lah.2 for ; Wed, 01 Apr 2015 15:54:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=zCtUncaP26rUH9RYXvCjymwyYi7KGKp8qc2bAgeotrI=; b=in2b9ep5/zudUmgpHJoOZsqsA+M4qQUGzPT0sm1MXpQAtXnE2hfDz5cFCEKPK4+x5k fPP7xYm37b7qhfEnP8xtNLxZgs+aqZFceeHiwJUcEDbIAhc3aAAsxYoxypHz+y2cebyF aPM+tt+qpSVqcB7LPcP6ATbLnnsPuuJfBLzKHn9pcYRjXH994aVMqRhiZQ3QRgi7Dzgv piQone8BM4Qv2JfwOBXt4niwWQ8jThXxFTokO8nem8d62yD2ty3JpE4WoXqMQz95NYks edNvlzNcjpxICU4R8bT/WqG+RpRf/E4x1fc/0UGxN0Kg9HG87Ta8UEsJyN28ADikGhYH ov8g== MIME-Version: 1.0 X-Received: by 10.152.29.133 with SMTP id k5mr23248615lah.78.1427928867772; Wed, 01 Apr 2015 15:54:27 -0700 (PDT) Received: by 10.152.36.199 with HTTP; Wed, 1 Apr 2015 15:54:27 -0700 (PDT) Date: Wed, 1 Apr 2015 15:54:27 -0700 Message-ID: From: Deep Debroy To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] library choices for AES CBC/GCM on dpdk app datapath 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, 01 Apr 2015 22:54:28 -0000 Hi, I was wondering if anyone has pointers for a crypto library implementing AES CBC and GCM that I can use for encrypting network packets in a DPDK app's datapath. The app is supposed to run in a VM in the cloud. So access to crypto acceleration hardware (besides Intel AES NI/pmuludq) may not be present. Does it make sense to look into OpenSSL and invoking it's APIs from a DPDK app? Thanks!