| Age | Commit message (Collapse) | Author |
|
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5569064
|
|
1) Include Szabolcs Nagy's patch which adds serialisation for more
signature subpackets.
2) Include Szabolcs Nagy's patch which adds functions for making DSA
keys.
3) Make the random io.Reader an argument to the low-level signature
functions rather than having them use crypto/rand.
4) Rename crypto/openpgp/error to crypto/openpgp/errors so that it
doesn't clash with the new error type.
R=bradfitz, r
CC=golang-dev
https://golang.org/cl/5528044
|
|
This is the result of running `gofix -r hashsum` over the tree, changing
the hash function implementations by hand and then fixing a couple of
instances where gofix didn't catch something.
The changed implementations are as simple as possible while still
working: I'm not trying to optimise in this CL.
R=rsc, cw, rogpeppe
CC=golang-dev
https://golang.org/cl/5448065
|
|
R=bradfitz, gri, r, dsymonds
CC=golang-dev
https://golang.org/cl/5390042
|
|
I misinterpreted http://tools.ietf.org/html/rfc4880#section-5.5.3
and implemented the sum of 16-bit values, rather than the 16-bit sum
of 8-bit values.
Thanks to Szabolcs Nagy for pointing it out.
R=bradfitz, r, rsc
CC=golang-dev
https://golang.org/cl/5372091
|
|
R=rsc
CC=golang-dev
https://golang.org/cl/5358041
|
|
R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/5322051
|
|
R=bradfitz, r
CC=golang-dev
https://golang.org/cl/4639049
|
|
R=bradfitz, r
CC=golang-dev
https://golang.org/cl/4581051
|
|
This change adds a function for generating new Entities and inchoate
support for reserialising Entities.
R=bradfitz, r, bradfitz
CC=golang-dev
https://golang.org/cl/4551044
|
|
With full multi-prime support we can support version 1 PKCS#1 private
keys. This means exporting all the members of rsa.PrivateKey, thus
making the API a little messy. However there has already been another
request to export this so it seems to be something that's needed.
Over time, rsa.GenerateMultiPrimeKey will replace rsa.GenerateKey, but
I need to work on the prime balance first because we're no longer
generating primes which are a multiples of 8 bits.
Fixes #987.
R=rsc
CC=golang-dev
https://golang.org/cl/4378046
|
|
R=bradfitzgo, nsz
CC=golang-dev
https://golang.org/cl/4280041
|
|
R=bradfitzgo, r
CC=golang-dev
https://golang.org/cl/4124054
|