mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Rename EcdhKeyDerivePrams
to EcdhKeyDeriveParams
This commit is contained in:
parent
13c9874830
commit
6ebc812035
Notes:
github-actions[bot]
2024-11-27 23:22:47 +00:00
Author: https://github.com/devgianlu
Commit: 6ebc812035
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2614
3 changed files with 12 additions and 12 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue