Commit c859a6c 1 parent 8ac52b1 commit c859a6c Copy full SHA for c859a6c
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -196,13 +196,13 @@ WIN_SPARKLE_API int __cdecl win_sparkle_set_dsa_pub_pem(const char *dsa_pub_pem)
196
196
If this function isn't called by the app, public key is obtained from
197
197
Windows resource named "EdDSAPub" of type "EDDSA".
198
198
199
- @param eddsa_pub_base64 EdDSA public key in base64 encoded format.
199
+ @param pubkey EdDSA public key in base64 encoded format.
200
200
201
201
@return 1 if valid EdDSA public key provided, 0 otherwise.
202
202
203
203
@since 0.9.0
204
204
*/
205
- WIN_SPARKLE_API int __cdecl win_sparkle_set_eddsa_pub_base64 (const char * eddsa_pub_base64 );
205
+ WIN_SPARKLE_API int __cdecl win_sparkle_set_eddsa_public_key (const char * pubkey );
206
206
207
207
/**
208
208
Sets application metadata.
Original file line number Diff line number Diff line change @@ -161,11 +161,11 @@ WIN_SPARKLE_API int __cdecl win_sparkle_set_dsa_pub_pem(const char *dsa_pub_pem)
161
161
return 0 ;
162
162
}
163
163
164
- WIN_SPARKLE_API int __cdecl win_sparkle_set_eddsa_pub_base64 (const char * eddsa_pub_base64 )
164
+ WIN_SPARKLE_API int __cdecl win_sparkle_set_eddsa_public_key (const char *pubkey )
165
165
{
166
166
try
167
167
{
168
- Settings::SetEdDSAPubKey (eddsa_pub_base64 );
168
+ Settings::SetEdDSAPubKey (pubkey );
169
169
return 1 ;
170
170
}
171
171
CATCH_ALL_EXCEPTIONS
You can’t perform that action at this time.
0 commit comments