Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate Derived Key from Shared Secret (ECDH-ES) - ConcatKDF

I have used the https://github.com/ricmoo/GMEllipticCurveCrypto to generate a Shared Secret using ECDH Algorithm.

I now have to Generate a Derived Key using the ECDH-ES algorithm as mentioned here: https://www.rfc-editor.org/rfc/rfc7518#section-4.6

I had highly appreciate if someone could guide me in the direction of generating a Derived Key

like image 614
Roshit Avatar asked May 28 '17 06:05

Roshit


Video Answer


1 Answers

You need to read about KDF in general and HKDF as common example. BTW KDF was mentioned in link you provided.

like image 182
John Tracid Avatar answered Sep 21 '22 10:09

John Tracid