cancel
Showing results for 
Search instead for 
Did you mean: 

Seeburger Keystore Manager

0 Kudos

I am a Seeburger user who would like to know more about the front-end Keystore Manager and its ability to manage AS2 certificates. Are there any documents out there which would be of assistance?

Brian.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Brian,

if you're referring to the "Key Center" within the SEEBURGER workbench, this frontend is only used in the SEEBURGER PGP module. AS2 certificates are managed via the NetWeaver administrator (see previous answers)

Hope that helps

Greetings

-Sascha-

naveen_chichili
Active Contributor
0 Kudos

Hi Brian,

Please got through the information provided in the links below...

[LINK1|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0e0117a-3167-2d10-d2ae-f87dfa5e00f0?quicklink=index&overridelayout=true

]

[LINK2|http://groups.google.com/group/cecid-hermes2/browse_frm/thread/8f85c948cb00cc3

]

The keystore used is limited to be in the format of PKCS12 and the

certificate inside should be signed in SHA1 algorithm. You will need

to prepare a private key and a signed certificate and combine it into

a PKCS12 keystore.

Firstly, we will need to generate the private key,

"Openssl genrsa -out server.key 1024"

Secondly, we will generate a CSR,

"Openssl req -new -key server.key -out server.csr"

Finally, we will generate a self-signed certificate as follows,

"Openssl x509 -req -days 60 - in server.csr -signkey server.key -sha1 -

out server.crt"

This statement will generate a self-signed certificate, using SHA1 as

the signing algorithm and having an alias called "hello".

To combine the certificate and the key into a PKCS12 keystore, we

issue the follwing command,

"openssl pkcs12 -name haha -export -in server.crt -inkey server.key -

out server.p12"

This will generate the keystore in the format of PKCS12 and having a

key alias named "hello".

The command below will export the certificate from the keystore

provided.

"openssl pkcs12 -in server.p12 -out /tmp/default_pub.crt -clcerts -

nokeys"

Regards,

Naveen.

Former Member
0 Kudos
Former Member
0 Kudos

Hi Brian,

I'm not sure whether I understood your question correctly but if you are asking about the Keystore manager where you import the certificate then you may need to use Visual Admin or NWA depends on your PI version.

You can find this details in SEEBURGER Adapter Installation guide (Master installation guide).

Best regards,

Pinkle