Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1140)

Issue 6535043: code review 6535043: go.crypto/scrypt: add package (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 6 months ago by dchest
Modified:
11 years ago
Reviewers:
agl1, r, pyramids
CC:
golang-dev, agl1, r
Visibility:
Public.

Description

go.crypto/scrypt: add package

Patch Set 1 #

Patch Set 2 : diff -r 680442a23eaf https://code.google.com/p/go.crypto #

Patch Set 3 : diff -r 680442a23eaf https://code.google.com/p/go.crypto #

Total comments: 16

Patch Set 4 : diff -r 680442a23eaf https://code.google.com/p/go.crypto #

Patch Set 5 : diff -r 680442a23eaf https://code.google.com/p/go.crypto #

Total comments: 6

Patch Set 6 : diff -r 680442a23eaf https://code.google.com/p/go.crypto #

Patch Set 7 : diff -r 680442a23eaf https://code.google.com/p/go.crypto #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+221 lines, -0 lines) Patch
A scrypt/scrypt.go View 1 2 3 4 5 6 1 chunk +109 lines, -0 lines 1 comment Download
A scrypt/scrypt_test.go View 1 2 3 4 1 chunk +112 lines, -0 lines 0 comments Download

Messages

Total messages: 17
dchest
Hello golang-dev@googlegroups.com, agl@golang.org (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://code.google.com/p/go.crypto
12 years, 6 months ago (2012-09-18 12:34:56 UTC) #1
agl1
LGTM, thanks! https://codereview.appspot.com/6535043/diff/4001/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/4001/scrypt/scrypt.go#newcode22 scrypt/scrypt.go:22: func blockCopy(dst, src []byte, n int) { ...
12 years, 6 months ago (2012-09-18 12:55:20 UTC) #2
dchest
PTAL https://codereview.appspot.com/6535043/diff/4001/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/4001/scrypt/scrypt.go#newcode22 scrypt/scrypt.go:22: func blockCopy(dst, src []byte, n int) { On ...
12 years, 6 months ago (2012-09-18 13:03:12 UTC) #3
dchest
https://codereview.appspot.com/6535043/diff/4001/scrypt/scrypt_test.go File scrypt/scrypt_test.go (right): https://codereview.appspot.com/6535043/diff/4001/scrypt/scrypt_test.go#newcode91 scrypt/scrypt_test.go:91: for _, v := range good { On 2012/09/18 ...
12 years, 6 months ago (2012-09-18 13:04:56 UTC) #4
r
https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go#newcode7 scrypt/scrypt.go:7: // Functions". can you link or at least provide ...
12 years, 6 months ago (2012-09-18 14:50:41 UTC) #5
dchest
https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go#newcode7 scrypt/scrypt.go:7: // Functions". On 2012/09/18 14:50:41, r wrote: > can ...
12 years, 6 months ago (2012-09-18 15:03:35 UTC) #6
r
https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go#newcode53 scrypt/scrypt.go:53: func integerify(b []byte, r int) uint64 { i don't ...
12 years, 6 months ago (2012-09-18 15:20:48 UTC) #7
dchest
PTAL https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/9002/scrypt/scrypt.go#newcode53 scrypt/scrypt.go:53: func integerify(b []byte, r int) uint64 { On ...
12 years, 6 months ago (2012-09-18 15:27:17 UTC) #8
r
LGTM leaving for agl
12 years, 6 months ago (2012-09-18 15:41:21 UTC) #9
agl1
https://codereview.appspot.com/6535043/diff/10003/scrypt/scrypt.go File scrypt/scrypt.go (right): https://codereview.appspot.com/6535043/diff/10003/scrypt/scrypt.go#newcode19 scrypt/scrypt.go:19: const maxInt = int(^uint(0) >> 1) The size of ...
12 years, 6 months ago (2012-09-18 17:51:57 UTC) #10
r
You don't need math for MaxInt32. Just do the obvious adjustment: const maxInt32 = int32(^uint32(0)>>1) ...
12 years, 6 months ago (2012-09-18 17:57:13 UTC) #11
dchest
On 2012/09/18 17:51:57, agl1 wrote: > https://codereview.appspot.com/6535043/diff/10003/scrypt/scrypt.go > File scrypt/scrypt.go (right): > > https://codereview.appspot.com/6535043/diff/10003/scrypt/scrypt.go#newcode19 > ...
12 years, 6 months ago (2012-09-18 19:55:55 UTC) #12
dchest
On 2012/09/18 19:55:55, dchest wrote: > On 2012/09/18 17:51:57, agl1 wrote: > > https://codereview.appspot.com/6535043/diff/10003/scrypt/scrypt.go > ...
12 years, 6 months ago (2012-09-18 20:07:23 UTC) #13
agl1
*** Submitted as http://code.google.com/p/go/source/detail?r=ad8a96e038bb&repo=crypto *** go.crypto/scrypt: add package R=golang-dev, agl, r CC=golang-dev http://codereview.appspot.com/6535043 Committer: Adam ...
12 years, 6 months ago (2012-09-18 20:59:59 UTC) #14
pyramids
On 2012/09/18 20:59:59, agl1 wrote: > *** Submitted as > http://code.google.com/p/go/source/detail?r=ad8a96e038bb&repo=crypto *** > > go.crypto/scrypt: ...
11 years ago (2014-03-16 18:53:20 UTC) #15
agl1
On Sun, Mar 16, 2014 at 2:53 PM, <stein.bjoern@gmail.com> wrote: > It does not appear ...
11 years ago (2014-03-16 19:07:55 UTC) #16
pyramids
11 years ago (2014-03-16 19:46:32 UTC) #17
Message was sent while issue was closed.
On 2014/03/16 19:07:55, agl1 wrote:
> On Sun, Mar 16, 2014 at 2:53 PM,  <mailto:stein.bjoern@gmail.com> wrote:
> > It does not appear to be included in Go 1.2, despite (assuming I
> > understand this thread correctly) having been included in the Go sources
> > nearly 18 month ago.
> 
> There are no plans to move scrypt into the core libraries.
> 
> 
> Cheers
> 
> AGL

Thanks for the info.
I guess I was under the misconception that the path it's hosted at implied it
should be or become part of the core libraries.
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b