summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/x509/x509.go
AgeCommit message (Collapse)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi1-1903/+0
2014-06-19Imported Upstream version 1.3upstream/1.3Michael Stapelberg1-118/+484
2013-12-03Imported Upstream version 1.2upstream/1.2Michael Stapelberg1-69/+230
2013-05-14Imported Upstream version 1.1upstream/1.1Michael Stapelberg1-1/+0
2013-03-04Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304Michael Stapelberg1-82/+393
2012-06-14Imported Upstream version 1.0.2upstream/1.0.2Ondřej Surý1-2/+2
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-157/+150
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+1073
2011-09-13Imported Upstream version 60Ondřej Surý1-1074/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý1-23/+23
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-234/+295
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý1-66/+71
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-11/+93
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-2/+73
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-3/+4
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-94/+128
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike1-2/+2
Use a count of -1 for infinity. Ditto for Replace. R=rsc CC=golang-dev http://codereview.appspot.com/1704044 Committer: Rob Pike <r@golang.org>
2010-06-30 x509: fix English.Adam Langley1-2/+2
(addressing comments from 1741045) R=r CC=golang-dev http://codereview.appspot.com/1678047
2010-06-30x509: support non-self-signed certs.Adam Langley1-5/+6
For generating non-self-signed certs we need to be able to specify a public key (for the signee) which is different from the private key (of the signer). R=rsc CC=golang-dev http://codereview.appspot.com/1741045
2010-03-04gofmt: modified algorithm for alignment of multi-line composite/list entriesRobert Griesemer1-4/+4
- only manual changes are in src/pkg/go/printer/nodes.go - use a heuristic to determine "outliers" such that not entire composites are forced to align with them - improves several places that were not unligned before due too simple heuristic - unalignes some cases that contain "outliers" - gofmt -w src misc Fixes issue 644. R=rsc, r CC=golang-dev http://codereview.appspot.com/241041
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer1-8/+8
- gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev http://codereview.appspot.com/223076
2010-02-25strings: delete Runes, BytesRuss Cox1-1/+1
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev http://codereview.appspot.com/224062
2010-02-19crypto/x509: support certificate creation.Adam Langley1-2/+230
R=rsc CC=golang-dev http://codereview.appspot.com/212041
2010-02-05asn1: Fixes and additions to marshallingAdam Langley1-2/+2
Marshalling: * Fixes several silly bugs. * Support the RawContents type. * Support the RawValue type. * Recurse into nested interface{}. Both directions: * Better handling of SETs. You can now tag an element in a structure with "set" to get the correct tag for serialisation. * For types that aren't in a structure, you can now name them with "SET" on the end. * SETs are no longer implicitly treated as SEQUENCEs. R=rsc CC=golang-dev http://codereview.appspot.com/201049
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-170/+170
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 1st set of files. R=rsc CC=agl, golang-dev, iant, ken2, r http://codereview.appspot.com/180047
2009-11-24Change to container/vector interface:Robert Griesemer1-1/+1
- removed New(len int) in favor of new(Vector).Resize(len, cap) - removed Init(len int) in favor of Resize(len, cap) - runs all.bash Fixes issue 294. R=rsc, r, r1 http://codereview.appspot.com/157143
2009-11-18crypto/x509: RawContents -> RawContentAdam Langley1-1/+1
TBR=rsc R=rsc http://codereview.appspot.com/157075
2009-11-18crypto/x509: add certificate support.Adam Langley1-3/+531
R=rsc CC=golang-dev http://codereview.appspot.com/156054
2009-11-17asn1:Adam Langley1-1/+1
* add Marshal * add BitString.RightAlign * change to using a *time.Time (from time.Time) since that's what the time package uses. * return the unparsed data from Unmarshal. R=rsc CC=golang-dev http://codereview.appspot.com/156047
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-3/+3
R=rsc, r http://go/go-review/1025029
2009-11-05crypto/tls (part 5/5)Adam Langley1-1/+1
Make RSA and X509 build by using big. (This involves commenting out key generation for now since I haven't written Miller-Rabin in big yet.) Add entries to the Makefile. R=rsc CC=go-dev http://go/go-review/1022005
2009-10-21Add initial x509 code.Adam Langley1-0/+63
R=rsc APPROVED=rsc DELTA=659 (659 added, 0 deleted, 0 changed) OCL=35932 CL=35975