You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Doing some work with TLS 1.3 in both Go and Java, I recently found that Go ignores Key Usage status flags. On the other hand, Java's implementation checks key usage following the RFC. I'm thinking in particular about the digital signature signature bit:
> the digitalSignature bit MUST be set if the Key Usage extension is present
Reading the comment in verify.go, I see that Go didn't implement this feature given its inconsistent usage in the world.