From 69d19c5dc10e71205415e1cb4b8fb59fee2d79e2 Mon Sep 17 00:00:00 2001 From: fedosgad Date: Thu, 25 Aug 2022 12:52:17 +0300 Subject: [PATCH] Fix custom extension example --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a72701c..97b48b3 100644 --- a/README.md +++ b/README.md @@ -190,11 +190,13 @@ func (e *FakeDelegatedCredentialsExtension) Read(b []byte) (n int, err error) { // Extension type appendUint16(fakeDelegatedCredentials) + algosLength := 2 * len(e.SignatureAlgorithms) + // Extension data length - appendUint16(uint16(len(e.SignatureAlgorithms)) + 2) + appendUint16(uint16(algosLength) + 2) // Algorithms list length - appendUint16(uint16(len(e.SignatureAlgorithms))) + appendUint16(uint16(algosLength)) // Algorithms list for _, a := range e.SignatureAlgorithms {