LibWeb: Rename EcdhKeyDerivePrams to EcdhKeyDeriveParams

This commit is contained in:
devgianlu 2024-11-27 20:31:37 +01:00 committed by Andreas Kling
commit 6ebc812035
Notes: github-actions[bot] 2024-11-27 23:22:47 +00:00
3 changed files with 12 additions and 12 deletions

View file

@ -577,10 +577,10 @@ private:
}
};
struct EcdhKeyDerivePrams : public AlgorithmParams {
virtual ~EcdhKeyDerivePrams() override;
struct EcdhKeyDeriveParams : public AlgorithmParams {
virtual ~EcdhKeyDeriveParams() override;
EcdhKeyDerivePrams(String name, CryptoKey& public_key)
EcdhKeyDeriveParams(String name, CryptoKey& public_key)
: AlgorithmParams(move(name))
, public_key(public_key)
{