You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _content/doc/go1.23.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -292,12 +292,12 @@ The new `x509keypairleaf` [GODEBUG setting](/doc/godebug) is added for this beha
292
292
293
293
#### [`crypto/x509`](/pkg/crypto/x509/)
294
294
295
-
[`CreateCertificateRequest`](/pkg/crypto/x509#CreateCertificateRequest) now correct supports RSA-PSS signature algorithms.
295
+
[`CreateCertificateRequest`](/pkg/crypto/x509#CreateCertificateRequest) now correctly supports RSA-PSS signature algorithms.
296
296
297
297
[`CreateCertificateRequest`](/pkg/crypto/x509#CreateCertificateRequest) and [`CreateRevocationList`](/pkg/crypto/x509#CreateRevocationList) now verify the generated signature using the signer’s public key. If the signature is invalid, an error is returned. This has been the behavior of [`CreateCertificate`](/pkg/crypto/x509#CreateCertificate) since Go 1.16.
298
298
299
299
The [`x509sha1` GODEBUG setting](/pkg/crypto/x509#InsecureAlgorithmError) will
300
-
be removed in the next Go major release (Go 1.24). This will mean that crypto/x509
300
+
be removed in the next Go major release (Go 1.24). This will mean that `crypto/x509`
301
301
will no longer support verifying signatures on certificates that use SHA-1 based
302
302
signature algorithms.
303
303
@@ -424,7 +424,7 @@ In Go 1.22 and earlier, using
424
424
[`reflect.DeepEqual`](/pkg/reflect#DeepEqual) to compare an
425
425
[`Addr`](/pkg/net/netip#Addr) holding an IPv4 address to one holding
426
426
the IPv4-mapped IPv6 form of that address incorrectly returned true,
427
-
although the `Addr` values were different when comparing with `==` or
427
+
even though the `Addr` values were different when comparing with `==` or
428
428
[`Addr.Compare`](/pkg/net/netip#Addr.Compare).
429
429
This bug is now fixed and all three approaches now report the same
430
430
result.
@@ -470,7 +470,7 @@ Previous versions default to `winreadlinkvolume=0`.
470
470
471
471
#### [`reflect`](/pkg/reflect/)
472
472
473
-
The new methods synonymous with the method of the same name
473
+
The new methods synonymous with the methods of the same name
474
474
in [`Value`](/pkg/reflect#Value) are added to [`Type`](/pkg/reflect#Type):
0 commit comments