Skip to content

Commit

Permalink
Change rebuild function parameters formatting
Browse files Browse the repository at this point in the history
Co-authored-by: Andrea Gilardoni <4046444+andreagilardoni@users.noreply.github.com>
  • Loading branch information
pennam and andreagilardoni authored Jan 22, 2025
1 parent d0e0ecd commit b94975b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/utility/SElementArduinoCloudCertificate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ int SElementArduinoCloudCertificate::signatureCompare(const byte * signatureA, c
return 1;
}

int SElementArduinoCloudCertificate::rebuild(SecureElement & se, ECP256Certificate & cert, const String & deviceId, const String & notBefore, const String & notAfter, const String & serialNumber, const String & authorityKeyIdentifier, const String & signature, const SElementArduinoCloudSlot keySlot)
int SElementArduinoCloudCertificate::rebuild(
SecureElement & se, ECP256Certificate & cert, const String & deviceId,
const String & notBefore, const String & notAfter, const String & serialNumber,
const String & authorityKeyIdentifier, const String & signature,
const SElementArduinoCloudSlot keySlot)
{
byte serialNumberBytes[ECP256_CERT_SERIAL_NUMBER_LENGTH];
byte authorityKeyIdentifierBytes[ECP256_CERT_AUTHORITY_KEY_ID_LENGTH];
Expand Down

0 comments on commit b94975b

Please sign in to comment.