diff options
| author | Adam Langley <agl@golang.org> | 2011-06-06 10:35:46 -0400 |
|---|---|---|
| committer | Adam Langley <agl@golang.org> | 2011-06-06 10:35:46 -0400 |
| commit | c281ddf1eb4e6cff20096322f73724d2b21b74de (patch) | |
| tree | 83460f45252765e746bed4f254ae3391ce5654f2 /src/pkg/Makefile | |
| parent | 548e3d0342cfa31dc552ad45e683fc780c75a153 (diff) | |
| download | go-c281ddf1eb4e6cff20096322f73724d2b21b74de.tar.xz | |
crypto: reorg, cleanup and add function for generating CRLs.
This change moves a number of common PKIX structures into
crypto/x509/pkix, from where x509, and ocsp can reference
them, saving duplication. It also removes x509/crl and merges it into
x509 and x509/pkix.
x509 is changed to take advantage of the big.Int support that now
exists in asn1. Because of this, the public/private key pair in
http/httptest/server.go had to be updated because it was serialised
with an old version of the code that didn't zero pad ASN.1 INTEGERs.
R=bradfitz, rsc
CC=golang-dev
https://golang.org/cl/4532115
Diffstat (limited to 'src/pkg/Makefile')
| -rw-r--r-- | src/pkg/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile index a1f509c88c..2d6b3d0146 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -59,7 +59,7 @@ DIRS=\ crypto/tls\ crypto/twofish\ crypto/x509\ - crypto/x509/crl\ + crypto/x509/pkix\ crypto/xtea\ debug/dwarf\ debug/macho\ @@ -184,6 +184,7 @@ endif NOTEST+=\ crypto\ crypto/openpgp/error\ + crypto/x509/pkix\ debug/proc\ exp/gui\ exp/gui/x11\ |
