Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Keystore Problems
  • From: "Cantor, Scott" <cantor.2@xxxxxxx>
  • Date: Tue, 26 May 2020 20:40:06 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=osu.edu; dmarc=pass action=none header.from=osu.edu; dkim=pass header.d=osu.edu; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=tPElzo85HI5BOhvYzqakEJSUfkzrQA4NTXwA3S/9LwY=; b=Zm+fRcsnw1VWh6f8LapuRGkNuSzu6Mht3cPIcZFeSI6V0mHFvllXJbPITnTFn710focprKGsOZCd5vv+Qj/Y0lZC85e23/t2GAW2ge2ditaFoGMNldCnJ0dQwKHBgHQfzMJajK6N+X2vFXWp8eBYwF+tUMMzw5mKHoi5YE2MzCKXdOozo3mIi/+E99AGyY6we7X9PjIuQMGFohKmvq3l9KOwQXCK53fVAU/gojcXzieAapY9PRArNr/awd1u+CT0JrEG/GPh5gbOKHJS12d5bv90lycqJyZjiz0rEycByiyZRabFFPWXPtKvbxFqRa+6AGWRSw+32xXWMv+DDDamkg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=LsqtH/G4ZvqCIAPH8Ip9uTp6fKL8ToEDCSYiES1zqfcqfdi/WFqIj/p7Cb9g46bN7yxPIO5gG01HiZeFejHuFAsa9yDgGN0QXD8CMxic+LRrdjVpbNPr8ZEdGBA/WIhIurRFCHY9zye0pfuoDYkkadzqVKWivjIaSJkOtTnykIzkOE5qBenwy3PKbS/XPtaUSxCyG+TWMJhUWKnmJ95Pk74IrBCQn4zjlMy7u5EGkr2Hmek2ULwOZTJ7ZkSZNZOsgetnSUY4CwBM66DsrLdewiowSPG9SIi6w5V+5gh0amf1p4hs7M6wwzLWxB2+FxJ3pPYI3vs5zwgNGTh0kCkavA==
  • Delivered-to: jetty-users@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/jetty-users>
  • List-help: <mailto:jetty-users-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHWM4HEdKGZuhwOFkGPJtv7A0Zclqi6pOwAgAACiBiAAAW3gIAAIhy3///CZoA=
  • Thread-topic: [jetty-users] Keystore Problems
  • User-agent: Microsoft-MacOutlook/16.37.20051002

On 5/26/20, 4:34 PM, "jetty-users-bounces@xxxxxxxxxxx on behalf of David C Fuhs" <jetty-users-bounces@xxxxxxxxxxx on behalf of dfuhs@xxxxxxxxxxxx> wrote:

> What I really want is quite simple: a series of commands that will take as input a private key, a new SSL certificate, and a
> series of intermediate/CA certificates and create a PKCS12 keystore that Jetty can use.

openssl pkcs12 -export -out file.p12 -inkey private.key -in public.crt -certfile chain.crt

There are lot of varied ways to feed the certs in, but I've used a model where -in is just the EE cert and -certfile has the concat'd chain of the rest.

-- Scott



Back to the top