aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/crypto
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-09-07crypto/tls: print unexpected error in testRuss Cox
2014-09-02crypto: Add SHA3 functions in go.crypto/sha3 to the Hash enum.David Leon Gil
2014-08-29crypto: add SignerAdam Langley
2014-08-28crypto/md5: use go generate to create md5block.goChaiShushan
2014-08-25crypto/cipher: add CFB test vectors.Adam Langley
2014-08-15crypto/x509: SystemRootsError style tweaks, document in VerifyBrad Fitzpatrick
2014-08-12all: copy cmd/ld/textflag.h into pkg/GOOS_GOARCHRob Pike
2014-08-12crypto/rand: use getrandom system call on LinuxBrad Fitzpatrick
2014-08-11crypto/tls: implement tls-unique channel binding (RFC 5929 section 3).Andres Erbsen
2014-08-06crypto/tls: Added dynamic alternative to NameToCertificate map for SNIPercy Wegmann
2014-08-05crypto/tls: add ALPN support.Adam Langley
2014-07-28crypto/tls: check curve equation in ECDHE.Adam Langley
2014-07-28crypto/tls: Support ECDSA keys in generate_cert.goAsim Shankar
2014-07-22crypto/subtle: make ConstantTimeCompare return zero for args of different len...David Symonds
2014-07-10crypto/rc4: disable assembly implementation for nacl/arm.Shenghou Ma
2014-07-08crypto/x509: skip test on android (no Go tool)David Crawshaw
2014-07-03crypto/x509: fix format strings in testDmitriy Vyukov
2014-07-02crypto/rsa: fix out-of-bound access with short session keys.Adam Langley
2014-07-02crypto/cipher: fix typo in example commentPreetam Jinka
2014-07-01src, misc: applied gofmt -w -sRobert Griesemer
2014-06-28crypto/cipher: Fix typo in example commentPreetam Jinka
2014-06-03crypto/tls: fix typo referencing the required Config fieldBrad Fitzpatrick
2014-05-20build: make nacl passRuss Cox
2014-05-15crypto/sha256, crypto/sha512: fix argument size in assemblyRuss Cox
2014-05-09crypto/aes: fix overrun in assembly encrypt/decryptRuss Cox
2014-05-02std lib: fix various typos in commentsRobert Griesemer
2014-04-29all: spelling tweaks, A-GRobert Hencke
2014-04-26src: fix issues found by go vet stdRobert Hencke
2014-04-16all: fix typosRui Ueyama
2014-04-15crypto/tls: don't block on Read of zero bytesBrad Fitzpatrick
2014-04-14crypto/x509: fix Windows build.Adam Langley
2014-04-14crypto/x509: support SHA-512 by default.Adam Langley
2014-04-08crypto/(ec)dsa: use Fermat's inversion.Adam Langley
2014-04-02crypto/tls: deflake TestConnReadNonzeroAndEOFBrad Fitzpatrick
2014-03-28crypto/x509: unbreak Windows build.Adam Langley
2014-03-27crypto/x509: update tests because Windows removed the Verisign root.Adam Langley
2014-03-25crypto/tls: make Conn.Read return (n, io.EOF) when EOF is next in bufferBrad Fitzpatrick
2014-03-21encoding/asn1: use GeneralizedTime for times outside the range of UTCTime.Adam Langley
2014-03-20crypto/tls: clarify concurrent use of ConfigBrad Fitzpatrick
2014-03-11crypto/rsa: fix docs for PrecomputedValues.QinvShenghou Ma
2014-03-08crypto/md5, crypto/sha1: exclude amd64p32 from generic implementations.Dave Cheney
2014-03-04crypto/cipher: fix AEAD.Open documentation nitBrad Fitzpatrick
2014-03-03crypto/tls: split connErr to avoid read/write races.Adam Langley
2014-02-28crypto/tls: add DialWithDialer.Adam Langley
2014-02-25crypto/sha1: restore accidental removal of arm build tagBrad Fitzpatrick
2014-02-25all: merge NaCl branch (part 1)Dave Cheney
2014-02-24crypto/tls: report TLS version in ConnectionState.Adam Langley
2014-02-24crypto/tls: pick ECDHE curves based on server preference.Adam Langley
2014-02-24crypto/md5,sha1: add examples for SumRob Pike