[tor-commits] [translation/tails-misc_completed] Update translations for tails-misc_completed

2019-02-14 Thread translation
commit 406041c4203e0d6963b84ca3ce49efbc84b2e90d Author: Translation commit bot Date: Fri Feb 15 06:16:23 2019 + Update translations for tails-misc_completed --- de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/de.po b/de.po index 81b1ee456..4a982c947

[tor-commits] [translation/tails-misc] Update translations for tails-misc

2019-02-14 Thread translation
commit e74382a7cc4da18bdced2b8007e60215f325f8bb Author: Translation commit bot Date: Fri Feb 15 06:16:16 2019 + Update translations for tails-misc --- de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/de.po b/de.po index 81b1ee456..4a982c947 100644 ---

[tor-commits] [translation/support-portal] Update translations for support-portal

2019-02-14 Thread translation
commit e9170b830cee52f9d56feae2ef536f9c2010c749 Author: Translation commit bot Date: Fri Feb 15 00:52:38 2019 + Update translations for support-portal --- contents+pt-BR.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contents+pt-BR.po b/contents+pt-BR.po

[tor-commits] [meek/utls_3] Comment typo spotted by cohosh.

2019-02-14 Thread dcf
commit dd26d797b15b8a05262209e07846f7204420e81a Author: David Fifield Date: Thu Feb 14 11:04:34 2019 -0700 Comment typo spotted by cohosh. https://bugs.torproject.org/29077#comment:22 --- meek-client/utls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[tor-commits] [tor/master] Merge branch 'tor-github/pr/702'

2019-02-14 Thread dgoulet
commit 6c173d00f5ecba150b1a70a68de6102428d65f51 Merge: 00b073b1b 6a29aa7b8 Author: David Goulet Date: Thu Feb 14 11:43:10 2019 -0500 Merge branch 'tor-github/pr/702' .gitignore | 2 + configure.ac| 3 +

[tor-commits] [tor/master] Implement a fast aes-ctr prng

2019-02-14 Thread dgoulet
commit f3cbd6426cbb27b9ab4e5492a50a785cce77f805 Author: Nick Mathewson Date: Tue Feb 5 12:49:04 2019 -0500 Implement a fast aes-ctr prng This module is currently implemented to use the same technique as libottery (later used by the bsds' arc4random replacement), using

[tor-commits] [tor/master] Add test for crypto_fast_rng_get_double().

2019-02-14 Thread dgoulet
commit 3f28b98220a49730b8c58c45e42598ad2bada47b Author: Nick Mathewson Date: Thu Feb 7 08:18:08 2019 -0500 Add test for crypto_fast_rng_get_double(). --- src/test/test_crypto_rng.c | 4 1 file changed, 4 insertions(+) diff --git a/src/test/test_crypto_rng.c

[tor-commits] [tor/master] Add whitebox test for the long-output optimization of fast_rng

2019-02-14 Thread dgoulet
commit 6a29aa7b8c86151701df4b881aded4fc152ea116 Author: Nick Mathewson Date: Thu Feb 7 08:18:46 2019 -0500 Add whitebox test for the long-output optimization of fast_rng --- src/test/test_crypto_rng.c | 18 +- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git

[tor-commits] [tor/master] Add a benchmark for our several PRNGs.

2019-02-14 Thread dgoulet
commit 490e187056d87ddd87981e0ea1b624b61bcbb666 Author: Nick Mathewson Date: Sat Feb 2 16:01:28 2019 +0100 Add a benchmark for our several PRNGs. --- src/test/bench.c | 62 1 file changed, 62 insertions(+) diff --git

[tor-commits] [tor/master] Extract the common body of our random-int functions into a macro

2019-02-14 Thread dgoulet
commit 622a9a8a364520f2f1d0294b8d4389f1b29ba376 Author: Nick Mathewson Date: Wed Feb 6 12:51:50 2019 -0500 Extract the common body of our random-int functions into a macro This is the second part of refactoring the random-int-in-range code. ---

[tor-commits] [tor/master] Extract RNG tests into a new test module

2019-02-14 Thread dgoulet
commit 3d3578ab41c9be602fad5c4172a880668994c8c3 Author: Nick Mathewson Date: Wed Feb 6 12:28:05 2019 -0500 Extract RNG tests into a new test module test_crypto.c is pretty big; it wouldn't hurt to split it up some more before I start adding stuff to the PRNG tests. ---

[tor-commits] [tor/master] Add a test-rng program so we can pipe to dieharder.

2019-02-14 Thread dgoulet
commit acbde10fce5d688d70b5a4bfb3a736da838bb4cc Author: Nick Mathewson Date: Wed Feb 6 09:36:12 2019 -0500 Add a test-rng program so we can pipe to dieharder. --- .gitignore | 2 ++ src/test/include.am | 11 -- src/test/test_rng.c | 59

[tor-commits] [tor/master] Code for anonymous mappings via mmap() or CreateFileMapping().

2019-02-14 Thread dgoulet
commit 8ca808f81d28bbae9e9059172a7b7479d20e9594 Author: Nick Mathewson Date: Tue Feb 5 16:58:56 2019 -0500 Code for anonymous mappings via mmap() or CreateFileMapping(). Using an anonymous mmap() is a good way to get pages that we can set kernel-level flags on, like minherit()

[tor-commits] [tor/master] Extract numeric CSPRNG functions into a new module.

2019-02-14 Thread dgoulet
commit a49149fc13e8b81e30df17579f19408ae8f4200f Author: Nick Mathewson Date: Wed Feb 6 12:40:01 2019 -0500 Extract numeric CSPRNG functions into a new module. Some of the code for getting a random value within a range wants to be shared between crypto_rand() and the new

[tor-commits] [tor/master] Remove extraneous #if/#endif wrapper in crypto_rand.c

2019-02-14 Thread dgoulet
commit 21d184a184b2ac4e4b8a1ff9853cb50de31a41fe Author: Nick Mathewson Date: Wed Feb 6 12:37:02 2019 -0500 Remove extraneous #if/#endif wrapper in crypto_rand.c I don't know how this got here, but this kind of a wrapper only belongs in a header file. ---

[tor-commits] [tor/maint-0.3.5] Fix compilation when openssl is compiled without engine support.

2019-02-14 Thread asn
commit b9abdcd6bce961baea17274ff6d213322d2b46d7 Author: Nick Mathewson Date: Fri Feb 8 08:50:04 2019 -0500 Fix compilation when openssl is compiled without engine support. Patch from Mangix. Closes part of ticket 29026. --- src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/release-0.3.5] Changes file for ticket29026.

2019-02-14 Thread asn
commit b63404ebba747337aece30555d94150b4d1bdd30 Author: Nick Mathewson Date: Fri Feb 8 08:52:46 2019 -0500 Changes file for ticket29026. --- changes/ticket29026 | 4 1 file changed, 4 insertions(+) diff --git a/changes/ticket29026 b/changes/ticket29026 new file mode 100644 index

[tor-commits] [tor/master] Fix compilation when openssl is compiled without engine support.

2019-02-14 Thread asn
commit b9abdcd6bce961baea17274ff6d213322d2b46d7 Author: Nick Mathewson Date: Fri Feb 8 08:50:04 2019 -0500 Fix compilation when openssl is compiled without engine support. Patch from Mangix. Closes part of ticket 29026. --- src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/master] Merge branch 'tor-github/pr/689' into maint-0.3.5

2019-02-14 Thread asn
commit d83c299eba8010204b3fe0760b1372c7564889fe Merge: 9bfe4ed6d b63404ebb Author: George Kadianakis Date: Thu Feb 14 18:00:05 2019 +0200 Merge branch 'tor-github/pr/689' into maint-0.3.5 changes/ticket29026| 4 src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/release-0.3.5] Fix compilation when openssl is compiled without engine support.

2019-02-14 Thread asn
commit b9abdcd6bce961baea17274ff6d213322d2b46d7 Author: Nick Mathewson Date: Fri Feb 8 08:50:04 2019 -0500 Fix compilation when openssl is compiled without engine support. Patch from Mangix. Closes part of ticket 29026. --- src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/maint-0.3.5] Merge branch 'tor-github/pr/689' into maint-0.3.5

2019-02-14 Thread asn
commit d83c299eba8010204b3fe0760b1372c7564889fe Merge: 9bfe4ed6d b63404ebb Author: George Kadianakis Date: Thu Feb 14 18:00:05 2019 +0200 Merge branch 'tor-github/pr/689' into maint-0.3.5 changes/ticket29026| 4 src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/release-0.3.5] Merge branch 'maint-0.3.5' into release-0.3.5

2019-02-14 Thread asn
commit 8dcecfb00028aa57ee8fb7bd6c9b817da365bdf2 Merge: 4041ff554 d83c299eb Author: George Kadianakis Date: Thu Feb 14 18:01:04 2019 +0200 Merge branch 'maint-0.3.5' into release-0.3.5 changes/ticket29026| 4 src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/release-0.3.5] Merge branch 'tor-github/pr/689' into maint-0.3.5

2019-02-14 Thread asn
commit d83c299eba8010204b3fe0760b1372c7564889fe Merge: 9bfe4ed6d b63404ebb Author: George Kadianakis Date: Thu Feb 14 18:00:05 2019 +0200 Merge branch 'tor-github/pr/689' into maint-0.3.5 changes/ticket29026| 4 src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/release-0.3.5] Add more openssl includes to fix no-deprecated compilation

2019-02-14 Thread asn
commit 49ec29044d12ff1d609ebe491f08f84e958be748 Author: Nick Mathewson Date: Fri Feb 8 08:51:04 2019 -0500 Add more openssl includes to fix no-deprecated compilation Closes ticket 29026; patch from Mangix. --- src/lib/crypt_ops/crypto_hkdf.c | 1 + src/lib/crypt_ops/crypto_rand.c

[tor-commits] [tor/master] Merge branch 'maint-0.3.5'

2019-02-14 Thread asn
commit 00b073b1bc909d2d2a30a3c1ddd5abd5e670da80 Merge: b804d5bc4 d83c299eb Author: George Kadianakis Date: Thu Feb 14 18:01:07 2019 +0200 Merge branch 'maint-0.3.5' changes/ticket29026| 4 src/lib/crypt_ops/aes_openssl.c| 2 +-

[tor-commits] [tor/master] Changes file for ticket29026.

2019-02-14 Thread asn
commit b63404ebba747337aece30555d94150b4d1bdd30 Author: Nick Mathewson Date: Fri Feb 8 08:52:46 2019 -0500 Changes file for ticket29026. --- changes/ticket29026 | 4 1 file changed, 4 insertions(+) diff --git a/changes/ticket29026 b/changes/ticket29026 new file mode 100644 index

[tor-commits] [tor/maint-0.3.5] Changes file for ticket29026.

2019-02-14 Thread asn
commit b63404ebba747337aece30555d94150b4d1bdd30 Author: Nick Mathewson Date: Fri Feb 8 08:52:46 2019 -0500 Changes file for ticket29026. --- changes/ticket29026 | 4 1 file changed, 4 insertions(+) diff --git a/changes/ticket29026 b/changes/ticket29026 new file mode 100644 index

[tor-commits] [tor/master] Add more openssl includes to fix no-deprecated compilation

2019-02-14 Thread asn
commit 49ec29044d12ff1d609ebe491f08f84e958be748 Author: Nick Mathewson Date: Fri Feb 8 08:51:04 2019 -0500 Add more openssl includes to fix no-deprecated compilation Closes ticket 29026; patch from Mangix. --- src/lib/crypt_ops/crypto_hkdf.c | 1 + src/lib/crypt_ops/crypto_rand.c

[tor-commits] [tor/maint-0.3.5] Add more openssl includes to fix no-deprecated compilation

2019-02-14 Thread asn
commit 49ec29044d12ff1d609ebe491f08f84e958be748 Author: Nick Mathewson Date: Fri Feb 8 08:51:04 2019 -0500 Add more openssl includes to fix no-deprecated compilation Closes ticket 29026; patch from Mangix. --- src/lib/crypt_ops/crypto_hkdf.c | 1 + src/lib/crypt_ops/crypto_rand.c

[tor-commits] [tor/release-0.3.5] Test: make unit tests use a reasonably live consensus

2019-02-14 Thread asn
commit cebc39bcd56dde8f9824055fcd54707de56ab9b1 Author: teor Date: Wed Nov 21 15:55:43 2018 +1000 Test: make unit tests use a reasonably live consensus Cleanup after 24661. --- src/feature/nodelist/networkstatus.c | 7 ++- src/feature/nodelist/networkstatus.h | 5 +++--

[tor-commits] [tor/maint-0.3.5] Test: make unit tests use a reasonably live consensus

2019-02-14 Thread asn
commit cebc39bcd56dde8f9824055fcd54707de56ab9b1 Author: teor Date: Wed Nov 21 15:55:43 2018 +1000 Test: make unit tests use a reasonably live consensus Cleanup after 24661. --- src/feature/nodelist/networkstatus.c | 7 ++- src/feature/nodelist/networkstatus.h | 5 +++--

[tor-commits] [tor/release-0.3.5] Entry Nodes: Use a reasonably live consensus to select guards

2019-02-14 Thread asn
commit d1ac5613fc832f4b298fbc243a35660dbd0976e3 Author: teor Date: Mon Nov 5 15:27:38 2018 +1000 Entry Nodes: Use a reasonably live consensus to select guards Fixes bug 24661; bugfix on 0.3.0.1-alpha. --- changes/bug24661| 3 +++ src/feature/client/entrynodes.c |

[tor-commits] [tor/master] Merge branch 'tor-github/pr/536' into maint-0.3.5

2019-02-14 Thread asn
commit 9bfe4ed6dd666bb276e35b6e5c8c3de0c218bce0 Merge: 6efc2a0e1 805f75182 Author: George Kadianakis Date: Thu Feb 14 17:39:34 2019 +0200 Merge branch 'tor-github/pr/536' into maint-0.3.5 changes/bug24661 | 3 ++ changes/bug28569 | 3 ++

[tor-commits] [tor/maint-0.3.5] Entry Nodes: Mark outdated dirservers in reasonably live consensuses

2019-02-14 Thread asn
commit 657618ba9bd96830b0a283c28db203bf9fffb15d Author: teor Date: Wed Nov 21 19:51:34 2018 +1000 Entry Nodes: Mark outdated dirservers in reasonably live consensuses Fixes bug 28569; bugfix on Tor 0.3.2.5-alpha. --- changes/bug28569 | 3 +++

[tor-commits] [tor/maint-0.3.5] Merge branch 'tor-github/pr/536' into maint-0.3.5

2019-02-14 Thread asn
commit 9bfe4ed6dd666bb276e35b6e5c8c3de0c218bce0 Merge: 6efc2a0e1 805f75182 Author: George Kadianakis Date: Thu Feb 14 17:39:34 2019 +0200 Merge branch 'tor-github/pr/536' into maint-0.3.5 changes/bug24661 | 3 ++ changes/bug28569 | 3 ++

[tor-commits] [tor/release-0.3.5] Merge branch 'tor-github/pr/536' into maint-0.3.5

2019-02-14 Thread asn
commit 9bfe4ed6dd666bb276e35b6e5c8c3de0c218bce0 Merge: 6efc2a0e1 805f75182 Author: George Kadianakis Date: Thu Feb 14 17:39:34 2019 +0200 Merge branch 'tor-github/pr/536' into maint-0.3.5 changes/bug24661 | 3 ++ changes/bug28569 | 3 ++

[tor-commits] [tor/release-0.3.5] Entry Nodes: Test on reasonably live consensuses

2019-02-14 Thread asn
commit 805f75182a87286a727df323be7c37add595bdff Author: teor Date: Thu Nov 22 17:47:12 2018 +1000 Entry Nodes: Test on reasonably live consensuses As well as live consensuses. Tests for 24661. --- src/test/test_entrynodes.c | 26 ++ 1 file

[tor-commits] [tor/release-0.3.5] Merge branch 'maint-0.3.5' into release-0.3.5

2019-02-14 Thread asn
commit 4041ff5543084978ab3a1f765280489ddc8ef02c Merge: ffbc8a7c2 9bfe4ed6d Author: George Kadianakis Date: Thu Feb 14 17:40:58 2019 +0200 Merge branch 'maint-0.3.5' into release-0.3.5 changes/bug24661 | 3 ++ changes/bug28569 | 3 ++

[tor-commits] [tor/master] Merge branch 'maint-0.3.5'

2019-02-14 Thread asn
commit b804d5bc49fe6f73e96f8b584c499249bbe8d2a5 Merge: 5f42bc0f4 9bfe4ed6d Author: George Kadianakis Date: Thu Feb 14 17:40:59 2019 +0200 Merge branch 'maint-0.3.5' ___ tor-commits mailing list tor-commits@lists.torproject.org

[tor-commits] [tor/release-0.3.5] Entry Nodes: refactor tests to use macros

2019-02-14 Thread asn
commit 390112d07e7daad1ce1e79b37c3357ca936fd9ae Author: teor Date: Thu Nov 22 17:10:28 2018 +1000 Entry Nodes: refactor tests to use macros Part of 24661. --- src/test/test_entrynodes.c | 67 +++--- 1 file changed, 34 insertions(+), 33

[tor-commits] [tor/release-0.3.5] Entry Nodes: Mark outdated dirservers in reasonably live consensuses

2019-02-14 Thread asn
commit 657618ba9bd96830b0a283c28db203bf9fffb15d Author: teor Date: Wed Nov 21 19:51:34 2018 +1000 Entry Nodes: Mark outdated dirservers in reasonably live consensuses Fixes bug 28569; bugfix on Tor 0.3.2.5-alpha. --- changes/bug28569 | 3 +++

[tor-commits] [tor/maint-0.3.5] Entry Nodes: refactor tests to use macros

2019-02-14 Thread asn
commit 390112d07e7daad1ce1e79b37c3357ca936fd9ae Author: teor Date: Thu Nov 22 17:10:28 2018 +1000 Entry Nodes: refactor tests to use macros Part of 24661. --- src/test/test_entrynodes.c | 67 +++--- 1 file changed, 34 insertions(+), 33

[tor-commits] [tor/maint-0.3.5] Entry Nodes: Test on reasonably live consensuses

2019-02-14 Thread asn
commit 805f75182a87286a727df323be7c37add595bdff Author: teor Date: Thu Nov 22 17:47:12 2018 +1000 Entry Nodes: Test on reasonably live consensuses As well as live consensuses. Tests for 24661. --- src/test/test_entrynodes.c | 26 ++ 1 file

[tor-commits] [tor/maint-0.3.5] Entry Nodes: Use a reasonably live consensus to select guards

2019-02-14 Thread asn
commit d1ac5613fc832f4b298fbc243a35660dbd0976e3 Author: teor Date: Mon Nov 5 15:27:38 2018 +1000 Entry Nodes: Use a reasonably live consensus to select guards Fixes bug 24661; bugfix on 0.3.0.1-alpha. --- changes/bug24661| 3 +++ src/feature/client/entrynodes.c |

[tor-commits] [webwml/master] Remove 8.0.5 from RecommendedTBBVersions

2019-02-14 Thread boklm
commit b4f73a95edd18ebbb42220c08e62771e3fc46588 Author: Nicolas Vigier Date: Thu Feb 14 14:20:20 2019 +0100 Remove 8.0.5 from RecommendedTBBVersions --- projects/torbrowser/RecommendedTBBVersions | 4 1 file changed, 4 deletions(-) diff --git

[tor-commits] [translation/tails-persistence-setup] Update translations for tails-persistence-setup

2019-02-14 Thread translation
commit 3881e02a84887a9f571eca5874f177fde62955f8 Author: Translation commit bot Date: Thu Feb 14 12:47:09 2019 + Update translations for tails-persistence-setup --- fr/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fr/fr.po b/fr/fr.po index

[tor-commits] [translation/tails-persistence-setup_completed] Update translations for tails-persistence-setup_completed

2019-02-14 Thread translation
commit a706d3bfd1ff6a97a5a11b0bb26131827573a1f6 Author: Translation commit bot Date: Thu Feb 14 12:47:16 2019 + Update translations for tails-persistence-setup_completed --- fr/fr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fr/fr.po b/fr/fr.po index