[arch-commits] Commit in aircrack-ng/repos (8 files)

2017-03-27 Thread Jonathan Steel
Date: Monday, March 27, 2017 @ 19:20:26
  Author: jsteel
Revision: 219418

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  
aircrack-ng/repos/community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
(from rev 219417, 
aircrack-ng/trunk/9a1846507ff043c397257206ff21adae90a122f4.patch)
  aircrack-ng/repos/community-testing-i686/PKGBUILD
(from rev 219417, aircrack-ng/trunk/PKGBUILD)
  
aircrack-ng/repos/community-testing-x86_64/9a1846507ff043c397257206ff21adae90a122f4.patch
(from rev 219417, 
aircrack-ng/trunk/9a1846507ff043c397257206ff21adae90a122f4.patch)
  aircrack-ng/repos/community-testing-x86_64/PKGBUILD
(from rev 219417, aircrack-ng/trunk/PKGBUILD)
Deleted:
  
aircrack-ng/repos/community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
  aircrack-ng/repos/community-testing-i686/PKGBUILD
  
aircrack-ng/repos/community-testing-x86_64/9a1846507ff043c397257206ff21adae90a122f4.patch
  aircrack-ng/repos/community-testing-x86_64/PKGBUILD

-+
 /9a1846507ff043c397257206ff21adae90a122f4.patch |  118 
++
 /PKGBUILD   |   86 
+++
 community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   |   59 
-
 community-testing-i686/PKGBUILD |   41 
---
 community-testing-x86_64/9a1846507ff043c397257206ff21adae90a122f4.patch |   59 
-
 community-testing-x86_64/PKGBUILD   |   41 
---
 6 files changed, 204 insertions(+), 200 deletions(-)

Deleted: community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
===
--- community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
2017-03-27 19:20:08 UTC (rev 219417)
+++ community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
2017-03-27 19:20:26 UTC (rev 219418)
@@ -1,59 +0,0 @@
-From 9a1846507ff043c397257206ff21adae90a122f4 Mon Sep 17 00:00:00 2001
-From: Thomas d'Otreppe 
-Date: Wed, 21 Dec 2016 00:18:46 +
-Subject: [PATCH] Fixed compilation with OpenSSL 1.1.0 (Closes: #1711).
-
-git-svn-id: http://svn.aircrack-ng.org/trunk@2882 
28c6078b-6c39-48e3-add9-af49d547ecab

- src/crypto.c | 23 +++
- 1 file changed, 23 insertions(+)
-
-diff --git a/src/crypto.c b/src/crypto.c
-index c331875..46fa9c5 100644
 a/src/crypto.c
-+++ b/src/crypto.c
-@@ -288,7 +288,15 @@ void calc_pmk( char *key, char *essid_pre, unsigned char 
pmk[40] )
- void calc_mic (struct AP_info *ap, unsigned char pmk[32], unsigned char 
ptk[80], unsigned char mic[20]) {
-   int i;
-   unsigned char pke[100];
-+  #if defined(USE_GCRYPT) || OPENSSL_VERSION_NUMBER < 0x1010L
-+  #define HMAC_USE_NO_PTR
-+  #endif
-+
-+  #ifdef HMAC_USE_NO_PTR
-   HMAC_CTX ctx;
-+  #else
-+  HMAC_CTX * ctx;
-+  #endif
- 
-   memcpy( pke, "Pairwise key expansion", 23 );
- 
-@@ -314,6 +322,7 @@ void calc_mic (struct AP_info *ap, unsigned char pmk[32], 
unsigned char ptk[80],
-   memcpy( pke + 67, ap->wpa.snonce, 32 );
-   }
- 
-+  #ifdef HMAC_USE_NO_PTR
-   HMAC_CTX_init();
-   HMAC_Init_ex(, pmk, 32, EVP_sha1(), NULL);
-   for(i = 0; i < 4; i++ )
-@@ -325,6 +334,20 @@ void calc_mic (struct AP_info *ap, unsigned char pmk[32], 
unsigned char ptk[80],
-   HMAC_Final(, ptk + i*20, NULL);
-   }
-   HMAC_CTX_cleanup();
-+  #else
-+  ctx = HMAC_CTX_new();
-+  HMAC_Init_ex(ctx, pmk, 32, EVP_sha1(), NULL);
-+  for(i = 0; i < 4; i++ )
-+  {
-+  pke[99] = i;
-+  //HMAC(EVP_sha1(), values[0], 32, pke, 100, ptk + i * 20, NULL);
-+  HMAC_Init_ex(ctx, 0, 0, 0, 0);
-+  HMAC_Update(ctx, pke, 100);
-+  HMAC_Final(ctx, ptk + i*20, NULL);
-+  }
-+  HMAC_CTX_free(ctx);
-+  #endif
-+  #undef HMAC_USE_NO_PTR
- 
-   if( ap->wpa.keyver == 1 )
-   {

Copied: 
aircrack-ng/repos/community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
 (from rev 219417, 
aircrack-ng/trunk/9a1846507ff043c397257206ff21adae90a122f4.patch)
===
--- community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
(rev 0)
+++ community-testing-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
2017-03-27 19:20:26 UTC (rev 219418)
@@ -0,0 +1,59 @@
+From 9a1846507ff043c397257206ff21adae90a122f4 Mon Sep 17 00:00:00 2001
+From: Thomas d'Otreppe 
+Date: Wed, 21 Dec 2016 00:18:46 +
+Subject: [PATCH] Fixed compilation with OpenSSL 1.1.0 (Closes: #1711).
+
+git-svn-id: http://svn.aircrack-ng.org/trunk@2882 

[arch-commits] Commit in aircrack-ng/repos (8 files)

2017-03-04 Thread Jelle van der Waa
Date: Saturday, March 4, 2017 @ 21:29:29
  Author: jelle
Revision: 214930

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  
aircrack-ng/repos/community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
(from rev 214929, 
aircrack-ng/trunk/9a1846507ff043c397257206ff21adae90a122f4.patch)
  aircrack-ng/repos/community-staging-i686/PKGBUILD
(from rev 214929, aircrack-ng/trunk/PKGBUILD)
  
aircrack-ng/repos/community-staging-x86_64/9a1846507ff043c397257206ff21adae90a122f4.patch
(from rev 214929, 
aircrack-ng/trunk/9a1846507ff043c397257206ff21adae90a122f4.patch)
  aircrack-ng/repos/community-staging-x86_64/PKGBUILD
(from rev 214929, aircrack-ng/trunk/PKGBUILD)
Deleted:
  
aircrack-ng/repos/community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
  aircrack-ng/repos/community-staging-i686/PKGBUILD
  
aircrack-ng/repos/community-staging-x86_64/9a1846507ff043c397257206ff21adae90a122f4.patch
  aircrack-ng/repos/community-staging-x86_64/PKGBUILD

-+
 /9a1846507ff043c397257206ff21adae90a122f4.patch |  118 
++
 /PKGBUILD   |   82 
++
 community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   |   59 
-
 community-staging-i686/PKGBUILD |   41 
---
 community-staging-x86_64/9a1846507ff043c397257206ff21adae90a122f4.patch |   59 
-
 community-staging-x86_64/PKGBUILD   |   41 
---
 6 files changed, 200 insertions(+), 200 deletions(-)

Deleted: community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
===
--- community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
2017-03-04 21:26:51 UTC (rev 214929)
+++ community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
2017-03-04 21:29:29 UTC (rev 214930)
@@ -1,59 +0,0 @@
-From 9a1846507ff043c397257206ff21adae90a122f4 Mon Sep 17 00:00:00 2001
-From: Thomas d'Otreppe 
-Date: Wed, 21 Dec 2016 00:18:46 +
-Subject: [PATCH] Fixed compilation with OpenSSL 1.1.0 (Closes: #1711).
-
-git-svn-id: http://svn.aircrack-ng.org/trunk@2882 
28c6078b-6c39-48e3-add9-af49d547ecab

- src/crypto.c | 23 +++
- 1 file changed, 23 insertions(+)
-
-diff --git a/src/crypto.c b/src/crypto.c
-index c331875..46fa9c5 100644
 a/src/crypto.c
-+++ b/src/crypto.c
-@@ -288,7 +288,15 @@ void calc_pmk( char *key, char *essid_pre, unsigned char 
pmk[40] )
- void calc_mic (struct AP_info *ap, unsigned char pmk[32], unsigned char 
ptk[80], unsigned char mic[20]) {
-   int i;
-   unsigned char pke[100];
-+  #if defined(USE_GCRYPT) || OPENSSL_VERSION_NUMBER < 0x1010L
-+  #define HMAC_USE_NO_PTR
-+  #endif
-+
-+  #ifdef HMAC_USE_NO_PTR
-   HMAC_CTX ctx;
-+  #else
-+  HMAC_CTX * ctx;
-+  #endif
- 
-   memcpy( pke, "Pairwise key expansion", 23 );
- 
-@@ -314,6 +322,7 @@ void calc_mic (struct AP_info *ap, unsigned char pmk[32], 
unsigned char ptk[80],
-   memcpy( pke + 67, ap->wpa.snonce, 32 );
-   }
- 
-+  #ifdef HMAC_USE_NO_PTR
-   HMAC_CTX_init();
-   HMAC_Init_ex(, pmk, 32, EVP_sha1(), NULL);
-   for(i = 0; i < 4; i++ )
-@@ -325,6 +334,20 @@ void calc_mic (struct AP_info *ap, unsigned char pmk[32], 
unsigned char ptk[80],
-   HMAC_Final(, ptk + i*20, NULL);
-   }
-   HMAC_CTX_cleanup();
-+  #else
-+  ctx = HMAC_CTX_new();
-+  HMAC_Init_ex(ctx, pmk, 32, EVP_sha1(), NULL);
-+  for(i = 0; i < 4; i++ )
-+  {
-+  pke[99] = i;
-+  //HMAC(EVP_sha1(), values[0], 32, pke, 100, ptk + i * 20, NULL);
-+  HMAC_Init_ex(ctx, 0, 0, 0, 0);
-+  HMAC_Update(ctx, pke, 100);
-+  HMAC_Final(ctx, ptk + i*20, NULL);
-+  }
-+  HMAC_CTX_free(ctx);
-+  #endif
-+  #undef HMAC_USE_NO_PTR
- 
-   if( ap->wpa.keyver == 1 )
-   {

Copied: 
aircrack-ng/repos/community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch
 (from rev 214929, 
aircrack-ng/trunk/9a1846507ff043c397257206ff21adae90a122f4.patch)
===
--- community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
(rev 0)
+++ community-staging-i686/9a1846507ff043c397257206ff21adae90a122f4.patch   
2017-03-04 21:29:29 UTC (rev 214930)
@@ -0,0 +1,59 @@
+From 9a1846507ff043c397257206ff21adae90a122f4 Mon Sep 17 00:00:00 2001
+From: Thomas d'Otreppe 
+Date: Wed, 21 Dec 2016 00:18:46 +
+Subject: [PATCH] Fixed compilation with OpenSSL 1.1.0 (Closes: #1711).
+
+git-svn-id: http://svn.aircrack-ng.org/trunk@2882 

[arch-commits] Commit in aircrack-ng/repos (8 files)

2013-09-06 Thread Balló György
Date: Friday, September 6, 2013 @ 18:26:13
  Author: bgyorgy
Revision: 96850

archrelease: copy trunk to community-i686, community-x86_64

Added:
  aircrack-ng/repos/community-i686/ChangeLog
(from rev 96849, aircrack-ng/trunk/ChangeLog)
  aircrack-ng/repos/community-i686/PKGBUILD
(from rev 96849, aircrack-ng/trunk/PKGBUILD)
  aircrack-ng/repos/community-x86_64/ChangeLog
(from rev 96849, aircrack-ng/trunk/ChangeLog)
  aircrack-ng/repos/community-x86_64/PKGBUILD
(from rev 96849, aircrack-ng/trunk/PKGBUILD)
Deleted:
  aircrack-ng/repos/community-i686/ChangeLog
  aircrack-ng/repos/community-i686/PKGBUILD
  aircrack-ng/repos/community-x86_64/ChangeLog
  aircrack-ng/repos/community-x86_64/PKGBUILD

+
 /ChangeLog |  132 +++
 /PKGBUILD  |   60 +++
 community-i686/ChangeLog   |   66 -
 community-i686/PKGBUILD|   91 -
 community-x86_64/ChangeLog |   66 -
 community-x86_64/PKGBUILD  |   91 -
 6 files changed, 192 insertions(+), 314 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2013-09-06 16:26:06 UTC (rev 96849)
+++ community-i686/ChangeLog2013-09-06 16:26:13 UTC (rev 96850)
@@ -1,66 +0,0 @@
-2011-06-28 Brad Fanella
-   
-   * Fix FS#24880
-
-2011-06-15 Brad Fanella
-
-* Fix FS#24633
-
-2011-03-16 Brad Fanella
-
-   * Fix FS#23295
-
-2011-01-17 Brad Fanella
-
-   * Fix #FS20303
-   * Split into aircrack-ng and aircrack-ng-scripts
-
-2009-09-18  Biru Ionut io...@archlinux.ro
-
-   * Version bump: 1.0-rc4
-
-2009-04.14  Corrado Primier  ba...@aur.archlinux.org
-
-   * Version bump: 1.0-rc3
-
-   * PKGBUILD: removed old compilation patch
-
-2009-02-08  Corrado Primier  ba...@aur.archlinux.org
-
-   * Version bump: 1.0-rc2
-
-   * sha-compile-fix-64bit.patch: added, fixes compilation on 64bit hosts
-
-2008-06-15  Corrado Primier  ba...@aur.archlinux.org
-
-   * Version bump: 1.0-rc1
-
-   * PKGBUILD: moved from $startdir to $srcdir/$pkgdir, added vim tags,
-   added sqlite3 dependency for airolib-ng support
-
-2008-05-03  Corrado Primier  ba...@aur.archlinux.org
-
-   * Version bump: 1.0-beta2
-
-   * PKGBUILD: adapted make command to the new Makefile, added zlib and
-   openssl dependencies
-
-2008-02-25  Corrado Primier  ba...@aur.archlinux.org
-
-   * Version bump: 0.9.3
-
-2008-02-08  Corrado Primier  ba...@aur.archlinux.org
-
-   * PKGBUILD: fixed man page location (thanks Snowman)
-
-2008-02-07  Corrado Primier  ba...@aur.archlinux.org
-
-   * Version bump: 0.9.2
-
-   * PKGBUILD: moved man pages to /usr/share/man
-
-2007-12-15  Corrado Primier  ba...@aur.archlinux.org
-
-   * ChangeLog: added
-
-   * PKGBUILD: adopted, cleaned up, uploaded to [community]

Copied: aircrack-ng/repos/community-i686/ChangeLog (from rev 96849, 
aircrack-ng/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2013-09-06 16:26:13 UTC (rev 96850)
@@ -0,0 +1,66 @@
+2011-06-28 Brad Fanella
+   
+   * Fix FS#24880
+
+2011-06-15 Brad Fanella
+
+* Fix FS#24633
+
+2011-03-16 Brad Fanella
+
+   * Fix FS#23295
+
+2011-01-17 Brad Fanella
+
+   * Fix #FS20303
+   * Split into aircrack-ng and aircrack-ng-scripts
+
+2009-09-18  Biru Ionut io...@archlinux.ro
+
+   * Version bump: 1.0-rc4
+
+2009-04.14  Corrado Primier  ba...@aur.archlinux.org
+
+   * Version bump: 1.0-rc3
+
+   * PKGBUILD: removed old compilation patch
+
+2009-02-08  Corrado Primier  ba...@aur.archlinux.org
+
+   * Version bump: 1.0-rc2
+
+   * sha-compile-fix-64bit.patch: added, fixes compilation on 64bit hosts
+
+2008-06-15  Corrado Primier  ba...@aur.archlinux.org
+
+   * Version bump: 1.0-rc1
+
+   * PKGBUILD: moved from $startdir to $srcdir/$pkgdir, added vim tags,
+   added sqlite3 dependency for airolib-ng support
+
+2008-05-03  Corrado Primier  ba...@aur.archlinux.org
+
+   * Version bump: 1.0-beta2
+
+   * PKGBUILD: adapted make command to the new Makefile, added zlib and
+   openssl dependencies
+
+2008-02-25  Corrado Primier  ba...@aur.archlinux.org
+
+   * Version bump: 0.9.3
+
+2008-02-08  Corrado Primier  ba...@aur.archlinux.org
+
+   * PKGBUILD: fixed man page location (thanks Snowman)
+
+2008-02-07  Corrado Primier  ba...@aur.archlinux.org
+
+   * Version bump: 0.9.2
+
+   * PKGBUILD: moved man pages to /usr/share/man
+
+2007-12-15  Corrado Primier  ba...@aur.archlinux.org
+
+   * ChangeLog: added
+
+   * PKGBUILD: adopted, cleaned up, uploaded to [community]

Deleted: community-i686/PKGBUILD