good morning!!!!

Skip to content
Snippets Groups Projects
  1. Dec 18, 2017
  2. Dec 15, 2017
  3. Dec 14, 2017
  4. Dec 13, 2017
  5. Dec 12, 2017
  6. Dec 11, 2017
    • holisticode's avatar
      cmd/swarm: add config file (#15548) · 32516c76
      holisticode authored
      This commit adds a TOML configuration option to swarm. It reuses
      the TOML configuration structure used in geth with swarm
      customized items.
      
      The commit:
      
      * Adds a "dumpconfig" command to the swarm executable which
        allows printing the (default) configuration to stdout, which
        then can be redirected to a file in order to customize it.
      * Adds a "--config <file>" option to the swarm executable which will
        allow to load a configuration file in TOML format from the
        specified location in order to initialize the Swarm node The
        override priorities are like follows: environment variables
        override command line arguments override config file override
        default config.
      32516c76
    • Felix Lange's avatar
      crypto: fix error check in toECDSA (#15632) · 1a32bdf9
      Felix Lange authored
      With this change,
      
          key, err := crypto.HexToECDSA("000000...")
          
      returns nil key and an error instead of a non-nil key with nil X
      and Y inside. Issue found by @guidovranken.
      1a32bdf9
    • Felix Lange's avatar
      rlp: fix string size check in readKind (#15625) · 2499b1b1
      Felix Lange authored
      Issue found by @guidovranken
      2499b1b1
    • Guillaume Ballet's avatar
      whisper: sym encryption message padding includes salt (#15631) · e7610ead
      Guillaume Ballet authored
      Now that the AES salt has been moved to the payload, padding must
      be adjusted to hide it, lest an attacker guesses that the packet
      uses symmetric encryption.
      e7610ead
  7. Dec 09, 2017
  8. Dec 08, 2017
  9. Dec 07, 2017
  10. Dec 06, 2017
  11. Dec 05, 2017
  12. Dec 04, 2017
  13. Dec 01, 2017
    • ferhat elmas's avatar
      build: enable gosimple linter (#15593) · 43dd8e62
      ferhat elmas authored
      43dd8e62
    • Matthew Di Ferrante's avatar
      crypto/bn256: fix generator on G1 (#15591) · 80c6dfc1
      Matthew Di Ferrante authored
      Generator in the current lib uses -2 as the y point when doing
      ScalarBaseMult, this makes it so that points/signatures generated
      from libs like py_ecc don't match/validate as pretty much all
      other libs (including libsnark) have (1, 2) as the standard
      generator.
      
      This does not affect consensus as the generator is never used in
      the VM, points are always explicitly defined and there is not
      ScalarBaseMult op - it only makes it so that doing "import
      github.com/ethereum/go-ethereum/crypto/bn256" doesn't generate
      bad points in userland tools.
      80c6dfc1
    • Rob's avatar
      eth/downloader: update tests for reliability (#15337) · d927c67f
      Rob authored
      Updated use of Parallel and added some subtests to help isolate
      them. Increased timeout in RequestHeadersByNumber so it
      doesn't time out and causes other tests to break.
      d927c67f
Loading