crypto
crypto copied to clipboard
[mirror] Go supplementary cryptography libraries
Add support for sending back partial success to the client while handling authentication in the server. This is implemented by a special error that can be returned by any of...
This fixes the case where AcceptSecContext is always called with the first token sent by the client instead of the most recently sent one. Previously, despite being being read from...
This allows clients to eliminate allocations when streaming data into the hash. Thanks to https://github.com/golang/go/issues/33160, allocations are already eliminated in many simple contexts. However, once you want to do anything...
As mentioned in this [issue](https://github.com/golang/go/issues/23751), DSA with 2048 key size is is required by many projects. Especially for SFTP for my use case. Even google query for [typical dsa key...
ssh: add openssh controlmaster socket support Adds support for establishing SSH sessions over an existing "ControlMaster" [unix domain] socket in proxy mode. Details of the protocol can be found here:...
Currently signing requests are executed while the keyring mutex is locked. However it is not necessary to do so. By unlocking as early as possible we can take advantage of...