Cheng Ding

Results 3 issues of Cheng Ding

### Checklist - [x] I've tested my changes. - [x] I've read the [Contribution Guidelines](https://github.com/v-braun/go2p/blob/master/CONTRIBUTING.md). - [x] I've updated the documentation if necessary. ### Motivation and Context In crypt/crypt.go, the...

For now, the `Shuffle()` function in training/model.go is: ```Go func (e Examples) Shuffle() { for i := range e { j := rand.Intn(i + 1) e[i], e[j] = e[j], e[i]...

SHA-1 algorithm is now insecure because of the collisions. Though in OTP it's still acceptable because it's difficult for attackers to collide the password within the period of validity. But...