Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the key used for validating the ServerMoved signature #2688

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions system/src/server_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ const uint8_t DEFAULT_TCP_SERVER_PUBLIC_KEY[] = {
const uint8_t SERVER_MOVED_SIGNATURE_PUBLIC_KEY[] = {
0x30, 0x59, 0x30, 0x13, 0x06, 0x07, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x02,
0x01, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07, 0x03,
0x42, 0x00, 0x04, 0x67, 0x64, 0xb7, 0x7c, 0xe7, 0xcf, 0x24, 0x81, 0xe4,
0xbf, 0x03, 0x17, 0xad, 0x47, 0x7a, 0x8f, 0x6b, 0x59, 0xc0, 0x98, 0x94,
0x8a, 0x61, 0x63, 0x41, 0xf7, 0x96, 0x0f, 0x33, 0xeb, 0x77, 0x92, 0xb9,
0xec, 0x29, 0xf6, 0xd9, 0x52, 0x05, 0x2e, 0x0a, 0x19, 0x84, 0x48, 0x5c,
0x46, 0x3a, 0x79, 0x4a, 0x9c, 0x8c, 0x62, 0xb6, 0xd7, 0x26, 0x1f, 0x1b,
0x27, 0x01, 0xe3, 0x4e, 0x18, 0xfc, 0xb4
0x42, 0x00, 0x04, 0x91, 0xc4, 0x75, 0x6c, 0xfa, 0xc7, 0x74, 0xed, 0xa6,
0x0f, 0xd9, 0xa3, 0x69, 0xde, 0x2e, 0x39, 0x73, 0xab, 0xce, 0x1e, 0x2a,
0x7a, 0x86, 0x9e, 0x4b, 0x35, 0xc1, 0x8a, 0xe3, 0x87, 0x17, 0xd6, 0xf0,
0x37, 0x26, 0x35, 0xcd, 0xaa, 0x7c, 0xc2, 0x56, 0x62, 0x64, 0x48, 0x9d,
0x28, 0x12, 0xf5, 0xe7, 0xa3, 0x91, 0x35, 0x96, 0xfb, 0x20, 0xb1, 0xa3,
0x43, 0x00, 0xfa, 0x7d, 0x67, 0xf3, 0x4d
};

const auto DEFAULT_UDP_SERVER_ADDRESS = "$id.udp.particle.io";
Expand Down