File tree 2 files changed +8
-8
lines changed
libraries/ESP8266WiFi/src
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11
11
12
12
#if ARDUINO_SIGNING
13
13
namespace esp8266 {
14
- extern UpdaterHashClass& hash ;
15
- extern UpdaterVerifyClass& sign ;
14
+ extern UpdaterHashClass& updaterSigningHash ;
15
+ extern UpdaterVerifyClass& updaterSigningVerifier ;
16
16
}
17
17
#endif
18
18
@@ -38,7 +38,7 @@ UpdaterClass::UpdaterClass()
38
38
, _progress_callback(nullptr )
39
39
{
40
40
#if ARDUINO_SIGNING
41
- installSignature (&esp8266::hash , &esp8266::sign );
41
+ installSignature (&esp8266::updaterSigningHash , &esp8266::updaterSigningVerifier );
42
42
#endif
43
43
}
44
44
Original file line number Diff line number Diff line change @@ -908,14 +908,14 @@ make_stack_thunk(br_ssl_engine_sendrec_buf);
908
908
909
909
#if ARDUINO_SIGNING
910
910
namespace {
911
- static BearSSL::PublicKey signPubKey (signing_pubkey);
912
- static BearSSL::HashSHA256 __hash ;
913
- static BearSSL::SigningVerifier __sign (&signPubKey );
911
+ static BearSSL::PublicKey signingPubKey (signing_pubkey);
912
+ static BearSSL::HashSHA256 __signingHash ;
913
+ static BearSSL::SigningVerifier __signingVerifier (&signingPubKey );
914
914
};
915
915
916
916
namespace esp8266 {
917
- UpdaterHashClass& hash = __hash ;
918
- UpdaterVerifyClass& sign = __sign ;
917
+ UpdaterHashClass& updaterSigningHash = __signingHash ;
918
+ UpdaterVerifyClass& updaterSigningVerifier = __signingVerifier ;
919
919
};
920
920
#endif
921
921
You can’t perform that action at this time.
0 commit comments