HACKERALERT / Picocrypt

A very small, very simple, yet very secure encryption tool.
GNU General Public License v3.0
2.42k stars 145 forks source link

Migrate golang.org/x/crypto to standard library imports #177

Closed HACKERALERT closed 4 months ago

HACKERALERT commented 4 months ago

https://github.com/golang/go/issues/65269

This means that all cryptography will be soon be done by the standard library. Hooray!

orochi02 commented 4 months ago

is there a reasoning behind this? or just to reduce some/certain efforts?

HACKERALERT commented 4 months ago

@orochi02 The standard library has the best support, security, and reliability, so once golang.org/x/crypto/ is merged into crypto/, now the cryptography that Picocrypt uses benefits from the standard library "treatment", will continue to get timely updates, and users building from source get the latest patches without me having to update go.mod. Overall, there's no reason not to do this.

HACKERALERT commented 4 months ago

Moved to Changelog's Future list