deriveConversationKey static method
Implementation
static Uint8List deriveConversationKey(Uint8List sharedSecret) {
final salt = utf8.encode('nip44-v2');
final conversationKey = hkdfExtract(
ikm: sharedSecret,
salt: Uint8List.fromList(salt),
);
return conversationKey;
}