Skip to content

Commit 5335092

Browse files
Fix leftover comment follow-ups from @bzbarsky-apple from project-chip#28899
1 parent 754918a commit 5335092

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/crypto/CHIPCryptoPAL.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ CHIP_ERROR AES_CTR_crypt(const uint8_t * input, size_t input_length, const Aes12
755755
* be configured to ignore CSR requested subject.
756756
*
757757
* @param keypair The key pair for which a CSR should be generated. Must not be null.
758-
* @param csr_span Span to hold the resulting CSR. Must be at least kMIN_CSR_Buffer_Size.
758+
* @param csr_span Span to hold the resulting CSR. Must have size at least kMIN_CSR_Buffer_Size.
759759
* Otherwise returns CHIP_ERROR_BUFFER_TOO_SMALL. It will get resized to
760760
* actual size needed on success.
761761

src/crypto/OperationalKeystore.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class OperationalKeystore
6767
* Only one pending operational keypair is supported at a time.
6868
*
6969
* @param fabricIndex - FabricIndex for which a new keypair must be made available
70-
* @param outCertificateSigningRequest - Buffer to contain the CSR. Must be at least `kMIN_CSR_Buffer_Size` large.
70+
* @param outCertificateSigningRequest - Buffer to contain the CSR. Must have size at least `kMIN_CSR_Buffer_Size`.
7171
*
7272
* @retval CHIP_NO_ERROR on success
7373
* @retval CHIP_ERROR_BUFFER_TOO_SMALL if `outCertificateSigningRequest` buffer is too small

0 commit comments

Comments
 (0)