crypto icon indicating copy to clipboard operation
crypto copied to clipboard

[mirror] Go supplementary cryptography libraries

Results 102 crypto issues
Sort by recently updated
recently updated
newest added

This commit allows autocert to request certificates with a specific `notAfter` value from the ACME CA. The CA may choose to honor this request or not. The `acme` package already...

This is a follow-up to CL 317169, which dropped compatibility with go1.12, and made this package an alias / wrapper for crypto/ed25519 in stdlib. This patch updates their godoc to...

Password hashing functions like bcrypt are very CPU intensive and long running. On my Apple m1 chip, it takes about 75,455 microseconds for one password hash to be generated with...

1. When using the bracketed syntax, the port is mandatory, even if it's the default one. Otherwise, OpenSSH rejects it with: "address [abcd:abcd:abcd:abcd]: missing port in address". See sshd(8): SSH_KNOWN_HOSTS...

fixes: golang/go#60740 https://github.com/golang/go/issues/60740

We make three changes here: 1. Allow iterating over all given certificates to find the one that signed this OCSP response, as RFC 6960 does not guarantee an order and...

I wanted to be able to use error.Is to match io or syscall errors on ssh network error. This is currently not possible because errors are not wrapped. This change...

add hmac-sha2-512.

Seems the OpenSSH server running on windows fails keyboard-interactive auth this way without sending any prompt to client. In such case the golang ssh client should not retry keyboard-interactive auth...

Fix a part of https://github.com/golang/go/issues/33227 and https://github.com/golang/go/issues/37239 . Future fix for domain resolve needs breaking changes or new API.