// Copyright 2010 The Go Authors. All rights reserved. // Copyright 2011 ThePiachu. All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // * The name of ThePiachu may not be used to endorse or promote products // derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. package crypto import ( "crypto/elliptic" "io" "math/big" "sync" ) // This code is from https://github.com/ThePiachu/GoBit and implements // several Koblitz elliptic curves over prime fields. // // The curve methods, internally, on Jacobian coordinates. For a given // (x, y) position on the curve, the Jacobian coordinates are (x1, y1, // z1) where x = x1/z1² and y = y1/z1³. The greatest speedups come // when the whole calculation can be performed within the transform // (as in ScalarMult and ScalarBaseMult). But even for Add and Double, // it's faster to apply and reverse the transform than to operate in // affine coordinates. // A BitCurve represents a Koblitz Curve with a=0. // See http://www.hyperelliptic.org/EFD/g1p/auto-shortw.html type BitCurve struct { P *big.Int // the order of the underlying field N *big.Int // the order of the base point B *big.Int // the constant of the BitCurve equation Gx, Gy *big.Int // (x,y) of the base point BitSize int // the size of the underlying field } func (BitCurve *BitCurve) Params() *elliptic.CurveParams { return &elliptic.CurveParams{ P: BitCurve.P, N: BitCurve.N, B: BitCurve.B, Gx: BitCurve.Gx, Gy: BitCurve.Gy, BitSize: BitCurve.BitSize, } } // IsOnBitCurve returns true if the given (x,y) lies on the BitCurve. func (BitCurve *BitCurve) IsOnCurve(x, y *big.Int) bool { // y² = x³ + b y2 := new(big.Int).Mul(y, y) //y² y2.Mod(y2, BitCurve.P) //y²%P x3 := new(big.Int).Mul(x, x) //x² x3.Mul(x3, x) //x³ x3.Add(x3, BitCurve.B) //x³+B x3.Mod(x3, BitCurve.P) //(x³+B)%P return x3.Cmp(y2) == 0 } //TODO: double check if the function is okay // affineFromJacobian reverses the Jacobian transform. See the comment at the // top of the file. func (BitCurve *BitCurve) affineFromJacobian(x, y, z *big.Int) (xOut, yOut *big.Int) { zinv := new(big.Int).ModInverse(z, BitCurve.P) zinvsq := new(big.Int).Mul(zinv, zinv) xOut = new(big.Int).Mul(x, zinvsq) xOut.Mod(xOut, BitCurve.P) zinvsq.Mul(zinvsq, zinv) yOut = new(big.Int).Mul(y, zinvsq) yOut.Mod(yOut, BitCurve.P) return } // Add returns the sum of (x1,y1) and (x2,y2) func (BitCurve *BitCurve) Add(x1, y1, x2, y2 *big.Int) (*big.Int, *big.Int) { z := new(big.Int).SetInt64(1) return BitCurve.affineFromJacobian(BitCurve.addJacobian(x1, y1, z, x2, y2, z)) } // addJacobian takes two points in Jacobian coordinates, (x1, y1, z1) and // (x2, y2, z2) and returns their sum, also in Jacobian form. func (BitCurve *BitCurve) addJacobian(x1, y1, z1, x2, y2, z2 *big.Int) (*big.Int, *big.Int, *big.Int) { // See http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html#addition-add-2007-bl z1z1 := new(big.Int).Mul(z1, z1) z1z1.Mod(z1z1, BitCurve.P) z2z2 := new(big.Int).Mul(z2, z2) z2z2.Mod(z2z2, BitCurve.P) u1 := new(big.Int).Mul(x1, z2z2) u1.Mod(u1, BitCurve.P) u2 := new(big.Int).Mul(x2, z1z1) u2.Mod(u2, BitCurve.P) h := new(big.Int).Sub(u2, u1) if h.Sign() == -1 { h.Add(h, BitCurve.P) } i := new(big.Int).Lsh(h, 1) i.Mul(i, i) j := new(big.Int).Mul(h, i) s1 := new(big.Int).Mul(y1, z2) s1.Mul(s1, z2z2) s1.Mod(s1, BitCurve.P) s2 := new(big.Int).Mul(y2, z1) s2.Mul(s2, z1z1) s2.Mod(s2, BitCurve.P) r := new(big.Int).Sub(s2, s1) if r.Sign() == -1 { r.Add(r, BitCurve.P) } r.Lsh(r, 1) v := new(big.Int).Mul(u1, i) x3 := new(big.Int).Set(r) x3.Mul(x3, x3) x3.Sub(x3, j) x3.Sub(x3, v) x3.Sub(x3, v) x3.Mod(x3, BitCurve.P) y3 := new(big.Int).Set(r) v.Sub(v, x3) y3.Mul(y3, v) s1.Mul(s1, j) s1.Lsh(s1, 1) y3.Sub(y3, s1) y3.Mod(y3, BitCurve.P) z3 := new(big.Int).Add(z1, z2) z3.Mul(z3, z3) z3.Sub(z3, z1z1) if z3.Sign() == -1 { z3.Add(z3, BitCurve.P) } z3.Sub(z3, z2z2) if z3.Sign() == -1 { z3.Add(z3, BitCurve.P) } z3.Mul(z3, h) z3.Mod(z3, BitCurve.P) return x3, y3, z3 } // Double returns 2*(x,y) func (BitCurve *BitCurve) Double(x1, y1 *big.Int) (*big.Int, *big.Int) { z1 := new(big.Int).SetInt64(1) return BitCurve.affineFromJacobian(BitCurve.doubleJacobian(x1, y1, z1)) } // doubleJacobian takes a point in Jacobian coordinates, (x, y, z), and // returns its double, also in Jacobian form. func (BitCurve *BitCurve) doubleJacobian(x, y, z *big.Int) (*big.Int, *big.Int, *big.Int) { // See http://hyperelliptic.org/EFD/g1p/auto-shortw-jacobian-0.html#doubling-dbl-2009-l a := new(big.Int).Mul(x, x) //X1² b := new(big.Int).Mul(y, y) //Y1² c := new(big.Int).Mul(b, b) //B² d := new(big.Int).Add(x, b) //X1+B d.Mul(d, d) //(X1+B)² d.Sub(d, a) //(X1+B)²-A d.Sub(d, c) //(X1+B)²-A-C d.Mul(d, big.NewInt(2)) //2*((X1+B)²-A-C) e := new(big.Int).Mul(big.NewInt(3), a) //3*A f := new(big.Int).Mul(e, e) //E² x3 := new(big.Int).Mul(big.NewInt(2), d) //2*D x3.Sub(f, x3) //F-2*D x3.Mod(x3, BitCurve.P) y3 := new(big.Int).Sub(d, x3) //D-X3 y3.Mul(e, y3) //E*(D-X3) y3.Sub(y3, new(big.Int).Mul(big.NewInt(8), c)) //E*(D-X3)-8*C y3.Mod(y3, BitCurve.P) z3 := new(big.Int).Mul(y, z) //Y1*Z1 z3.Mul(big.NewInt(2), z3) //3*Y1*Z1 z3.Mod(z3, BitCurve.P) return x3, y3, z3 } //TODO: double check if it is okay // ScalarMult returns k*(Bx,By) where k is a number in big-endian form. func (BitCurve *BitCurve) ScalarMult(Bx, By *big.Int, k []byte) (*big.Int, *big.Int) { // We have a slight problem in that the identity of the group (the // point at infinity) cannot be represented in (x, y) form on a finite // machine. Thus the standard add/double algorithm has to be tweaked // slightly: our initial state is not the identity, but x, and we // ignore the first true bit in |k|. If we don't find any true bits in // |k|, then we return nil, nil, because we cannot return the identity // element. Bz := new(big.Int).SetInt64(1) x := Bx y := By z := Bz seenFirstTrue := false for _, byte := range k { for bitNum := 0; bitNum < 8; bitNum++ { if seenFirstTrue { x, y, z = BitCurve.doubleJacobian(x, y, z) } if byte&0x80 == 0x80 { if !seenFirstTrue { seenFirstTrue = true } else { x, y, z = BitCurve.addJacobian(Bx, By, Bz, x, y, z) } } byte <<= 1 } } if !seenFirstTrue { return nil, nil } return BitCurve.affineFromJacobian(x, y, z) } // ScalarBaseMult returns k*G, where G is the base point of the group and k is // an integer in big-endian form. func (BitCurve *BitCurve) ScalarBaseMult(k []byte) (*big.Int, *big.Int) { return BitCurve.ScalarMult(BitCurve.Gx, BitCurve.Gy, k) } var mask = []byte{0xff, 0x1, 0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f} //TODO: double check if it is okay // GenerateKey returns a public/private key pair. The private key is generated // using the given reader, which must return random data. func (BitCurve *BitCurve) GenerateKey(rand io.Reader) (priv []byte, x, y *big.Int, err error) { byteLen := (BitCurve.BitSize + 7) >> 3 priv = make([]byte, byteLen) for x == nil { _, err = io.ReadFull(rand, priv) if err != nil { return } // We have to mask off any excess bits in the case that the size of the // underlying field is not a whole number of bytes. priv[0] &= mask[BitCurve.BitSize%8] // This is because, in tests, rand will return all zeros and we don't // want to get the point at infinity and loop forever. priv[1] ^= 0x42 x, y = BitCurve.ScalarBaseMult(priv) } return } // Marshal converts a point into the form specified in section 4.3.6 of ANSI // X9.62. func (BitCurve *BitCurve) Marshal(x, y *big.Int) []byte { byteLen := (BitCurve.BitSize + 7) >> 3 ret := make([]byte, 1+2*byteLen) ret[0] = 4 // uncompressed point xBytes := x.Bytes() copy(ret[1+byteLen-len(xBytes):], xBytes) yBytes := y.Bytes() copy(ret[1+2*byteLen-len(yBytes):], yBytes) return ret } // Unmarshal converts a point, serialised by Marshal, into an x, y pair. On // error, x = nil. func (BitCurve *BitCurve) Unmarshal(data []byte) (x, y *big.Int) { byteLen := (BitCurve.BitSize + 7) >> 3 if len(data) != 1+2*byteLen { return } if data[0] != 4 { // uncompressed form return } x = new(big.Int).SetBytes(data[1 : 1+byteLen]) y = new(big.Int).SetBytes(data[1+byteLen:]) return } //curve parameters taken from: //http://www.secg.org/collateral/sec2_final.pdf var initonce sync.Once var ecp160k1 *BitCurve var ecp192k1 *BitCurve var ecp224k1 *BitCurve var ecp256k1 *BitCurve func initAll() { initS160() initS192() initS224() initS256() } func initS160() { // See SEC 2 section 2.4.1 ecp160k1 = new(BitCurve) ecp160k1.P, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFAC73", 16) ecp160k1.N, _ = new(big.Int).SetString("0100000000000000000001B8FA16DFAB9ACA16B6B3", 16) ecp160k1.B, _ = new(big.Int).SetString("0000000000000000000000000000000000000007", 16) ecp160k1.Gx, _ = new(big.Int).SetString("3B4C382CE37AA192A4019E763036F4F5DD4D7EBB", 16) ecp160k1.Gy, _ = new(big.Int).SetString("938CF935318FDCED6BC28286531733C3F03C4FEE", 16) ecp160k1.BitSize = 160 } func initS192() { // See SEC 2 section 2.5.1 ecp192k1 = new(BitCurve) ecp192k1.P, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFEE37", 16) ecp192k1.N, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFFFFFFFFE26F2FC170F69466A74DEFD8D", 16) ecp192k1.B, _ = new(big.Int).SetString("000000000000000000000000000000000000000000000003", 16) ecp192k1.Gx, _ = new(big.Int).SetString("DB4FF10EC057E9AE26B07D0280B7F4341DA5D1B1EAE06C7D", 16) ecp192k1.Gy, _ = new(big.Int).SetString("9B2F2F6D9C5628A7844163D015BE86344082AA88D95E2F9D", 16) ecp192k1.BitSize = 192 } func initS224() { // See SEC 2 section 2.6.1 ecp224k1 = new(BitCurve) ecp224k1.P, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFE56D", 16) ecp224k1.N, _ = new(big.Int).SetString("010000000000000000000000000001DCE8D2EC6184CAF0A971769FB1F7", 16) ecp224k1.B, _ = new(big.Int).SetString("00000000000000000000000000000000000000000000000000000005", 16) ecp224k1.Gx, _ = new(big.Int).SetString("A1455B334DF099DF30FC28A169A467E9E47075A90F7E650EB6B7A45C", 16) ecp224k1.Gy, _ = new(big.Int).SetString("7E089FED7FBA344282CAFBD6F7E319F7C0B0BD59E2CA4BDB556D61A5", 16) ecp224k1.BitSize = 224 } func initS256() { // See SEC 2 section 2.7.1 ecp256k1 = new(BitCurve) ecp256k1.P, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFC2F", 16) ecp256k1.N, _ = new(big.Int).SetString("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141", 16) ecp256k1.B, _ = new(big.Int).SetString("0000000000000000000000000000000000000000000000000000000000000007", 16) ecp256k1.Gx, _ = new(big.Int).SetString("79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798", 16) ecp256k1.Gy, _ = new(big.Int).SetString("483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8", 16) ecp256k1.BitSize = 256 } // S160 returns a BitCurve which implements secp160k1 (see SEC 2 section 2.4.1) func S160() *BitCurve { initonce.Do(initAll) return ecp160k1 } // S192 returns a BitCurve which implements secp192k1 (see SEC 2 section 2.5.1) func S192() *BitCurve { initonce.Do(initAll) return ecp192k1 } // S224 returns a BitCurve which implements secp224k1 (see SEC 2 section 2.6.1) func S224() *BitCurve { initonce.Do(initAll) return ecp224k1 } // S256 returns a BitCurve which implements secp256k1 (see SEC 2 section 2.7.1) func S256() *BitCurve { initonce.Do(initAll) return ecp256k1 } href='/~lantw44/cgit/cgit.cgi/freebsd-ports-gnome/commit/archivers?id=2beda17d3f094ba4fe4cb654e0a02b40e0409e7c'>- update to 1.70leeym2008-07-022-5/+4 * - update to 1.5.8leeym2008-07-022-4/+4 * - Update to 1.5.0.chinsan2008-07-022-4/+4 * Update to 2.22.4.mezz2008-07-022-5/+4 * - update to 1.68leeym2008-06-292-4/+4 * Update to 1.17ehaupt2008-06-262-5/+4 * - Remove 5.x support.araujo2008-06-251-9/+1 * - Use new freepascal stuffacm2008-06-242-7/+4 * Fix build with GCC 3.4vs2008-06-241-0/+11 * Upgrade to 3.80 beta 2ache2008-06-232-5/+5 * Upgrade to version 2.2.olgeni2008-06-213-5/+6 * - Reduce self-test verbosity.lippe2008-06-213-2/+55 * Rename manual "test" target to "regression-test" so that it willnaddy2008-06-214-5/+5 * Make COMMENT overridable by a slave port.erwin2008-06-201-1/+1 * Add py-librtfcomp , LZRTF compression library.erwin2008-06-203-0/+32 * Add librtfcomp 1.1, LZRTF compression library.erwin2008-06-206-0/+108 * Update to 2.0.1mat2008-06-192-4/+4 * New port: pigz, Parallel GZip.delphij2008-06-194-0/+37 * - update patch for unrar-3.80.b1 and unbreak this portleeym2008-06-192-5/+5 * - Repocopy archivers/orange to archivers/liborange.araujo2008-06-1811-152/+65 * Reset maintainership (the domain has expired):pav2008-06-181-1/+1 * . Add a regression-test target.glewis2008-06-171-0/+3 * Drop maintainership.lioux2008-06-161-1/+1 * Upgrade to 3.80 beta 1ache2008-06-152-6/+6 * - Update to version 1.02lwhsu2008-06-156-94/+38 * - Fix shebang line in installed examplesstas2008-06-151-0/+2 * - Update to 2.0.0 (2.00)clsung2008-06-132-4/+4 * - Update to 1.5.4.chinsan2008-06-112-26/+27 * - update to 1.9.6leeym2008-06-082-7/+12 * Bump portrevision due to upgrade of devel/gettext.edwin2008-06-0623-12/+23 * Fix INDEX build.itetcu2008-06-061-0/+1 * - Update is needed because dynamite has been renamed to libdynamite.araujo2008-06-062-6/+6 * - Remove archivers/dynamite, project has been renamed to archivers/libdynamite.araujo2008-06-065-37/+0 * - Repocopy from archivers/dynamite to archivers/libdynamite.araujo2008-06-065-10/+12 * Fix a few typos in ports/archivers.olgeni2008-06-052-3/+3 * Fix kdeutils for amd64-current (and perhaps other 64-bitdeischen2008-06-041-0/+92 * - Update to 2.03miwi2008-05-302-6/+8 * . Update to 2.5.4b.glewis2008-05-292-5/+5 * - Update to 1.0.0.chinsan2008-05-282-5/+5 * Update to 2.22.3.marcus2008-05-283-5/+5 * Update to 4.32.6: Minor fixes and improvements, no user-visible changes.naddy2008-05-246-12/+21 * - Respect NOPORTEXAMPLESmiwi2008-05-242-8/+10 * Fix a few typos in the archivers category.olgeni2008-05-247-7/+7 * Update to 1.0.0.1kevlo2008-05-232-4/+4 * - Pass maintainership to submittertabthorpe2008-05-234-4/+4 * The PHP_Archive package allows creation of self-contained cross-platformmiwi2008-05-224-0/+55 * - Update to 2.011jadawin2008-05-1912-24/+24 * - Update to 1.5mm2008-05-163-13/+13 * Update to 1.0kevlo2008-05-164-33/+58 * - Fix syntaxpav2008-05-151-1/+1 * - Mark BROKEN on CURRENTpav2008-05-151-0/+4 * - Update to 2.010jadawin2008-05-136-12/+12 * . Update to 2.4.17.glewis2008-05-112-4/+4 * A change in the lpq1 component of the port:itetcu2008-05-092-6/+6 * - Fix docs installationsat2008-05-071-1/+1 * - Update to 4.58sat2008-05-072-6/+5 * Add forgotten files in previous commit:itetcu2008-05-072-0/+58 * - Update to v20080420itetcu2008-05-072-5/+7 * - Update to 2.010jadawin2008-05-066-12/+12 * Initial import of deco 0.8.1.kevlo2008-05-065-0/+104 * remove quotes from RESTRICTEDitetcu2008-05-051-1/+1 * - Set compiler optimizer for nasmmiwi2008-04-301-2/+2 * Assign to new volunteer, by request.linimon2008-04-301-1/+1 * - update to 1.3dinoex2008-04-302-5/+5 * - Fix package listehaupt2008-04-291-0/+5 * Update to 1.16ehaupt2008-04-292-7/+6 * Reset aaron's port maintainerships due to many maintainer-timeouts.linimon2008-04-291-1/+1 * Reset jylefort's port maintainerships. portmgr has taken his commit bitlinimon2008-04-291-1/+1 * - Fix fetchinggabor2008-04-291-1/+1 * - Update to 1.2.3miwi2008-04-272-4/+4 * - Make the port fetchable again after the distfile was modified upstream.miwi2008-04-262-5/+5 * - Update to 2.009jadawin2008-04-2212-24/+24 * - Revert previous workaround, 8.0-CURRENT has grown fdopendir(3).naddy2008-04-224-28/+9 * Conflict with archivers/lzmautils.naddy2008-04-211-0/+3 * Import lzma 4.32.5.naddy2008-04-2113-0/+175 * Honors CCache2008-04-211-0/+1 * - Respect a non-default CCsat2008-04-211-1/+1 * - Fix the "Main packet not found" error;thierry2008-04-201-8/+3 * Parity v2 Archive create/verify/recoverthierry2008-04-204-0/+51 * - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-2012-15/+13 * - Update mastersite.jmelo2008-04-181-2/+2 * - Update mastersite.jmelo2008-04-181-1/+1 * - Take advantage of CPAN macro from bsd.sites.mk, change ${MASTER_SITE_PERL_C...araujo2008-04-175-10/+5 * Work around the assumption that openat() implies the existence ofnaddy2008-04-122-0/+19 * - Pass literal gmake as MAKEPROG, build breaks when passed full path to gmakepav2008-04-111-1/+1 * Change maintainers e-mail address.ehaupt2008-04-111-2/+2 * - Remove expired tkstep80 related portspav2008-04-095-69/+0 * - Move from versioned tcl/tk CATEGORIES to simple tcl and tk categoriespav2008-04-091-1/+1 * Update to 2.22.2.mezz2008-04-092-4/+4 * Update to 2.22.1ahze2008-04-082-5/+4 * - Update to 20080302gabor2008-04-072-4/+4 * - Add ruby 1.9 supportstas2008-04-061-3/+4 * - Fix Unicode supportrafan2008-04-062-17/+19 * Honor CCache2008-04-041-4/+6 * USE_UNSHRINK becomes default long time ago, remove itache2008-04-021-1/+1 * Security fixes adopted/reimplemented from Debian:ache2008-04-027-24/+241 * Archive::Tar::Minitar is a pure-Ruby library and command-line utility thatdinoex2008-03-295-0/+211 * - Update to 0.5.4acm2008-03-282-4/+4 * Xarchiver is a Desktop Environment independent archiver frontend.gahr2008-03-285-0/+90 * Use MASTER_SITE_CRITICALehaupt2008-03-287-14/+7 * - Use CPAN macro.kuriyama2008-03-271-2/+2 * - use CPAN Macroclsung2008-03-271-2/+1 * Use CPAN macro.erwin2008-03-251-1/+1 * Update to 3.7.8vs2008-03-242-4/+4 * The FreeBSD GNOME team is proud to annunce the release of GNOME 2.22.0 formarcus2008-03-243-11/+21 * Update to 1.0.5 which fixes CVE-2008-1732.delphij2008-03-213-5/+4 * - Remove USE_GETOPT_LONG which is a no-op since March 2007pav2008-03-201-1/+0 * - Remove USE_GETOPT_LONG which is a no-op since March 2007pav2008-03-209-10/+0 * . Update to 2.4.14.glewis2008-03-172-4/+4 * - Tarball re-roll, bugfix updatetabthorpe2008-03-152-3/+4 * - Update maintainer addressjadawin2008-03-127-7/+7 * - update to 1.94leeym2008-03-112-5/+5 * - update to 1.66leeym2008-03-112-5/+5 * - update to 1.66leeym2008-03-112-7/+6 * - update to 1.66leeym2008-03-112-7/+6 * - set PERL_CONFIGURE=5.8.0+leeym2008-03-111-3/+1 * - update to 1.56leeym2008-03-112-5/+5 * - remove BUILD_DEPENDS to allow build on perl-5.6.2leeym2008-03-101-5/+1 * - use CPAN macroleeym2008-03-102-10/+17 * - Update to 3.02 [1]fjoe2008-03-102-11/+19 * - Respect CFLAGSgarga2008-03-091-1/+2 * Use ${MASTER_SITE_GOOGLE_CODE} instead ofedwin2008-03-071-1/+1 * - Temporarily disable lpaq, lpq, and paq9 components on 64-bittabthorpe2008-03-033-10/+20 * . Update to 2.4.13.glewis2008-03-022-4/+4 * - Update to 8.o9tabthorpe2008-03-014-15/+50 * - use CPAN macroleeym2008-02-261-3/+2 * Update to 0.26erwin2008-02-232-4/+4 * - Add unrar-iconv (new slave port, as zh-unrar) to CONFLICTS.alepulver2008-02-171-1/+1 * Add unrar-iconv: unrar with iconv support (as slave port).alepulver2008-02-173-0/+227 * - Upgrade to 1.09.kuriyama2008-02-142-4/+4 * - Update to 20080202gabor2008-02-142-6/+6 * . Update to 2.4.12.glewis2008-02-052-4/+4 * Mark as broken on sparc64: does not compile.linimon2008-02-011-1/+7 * - Fix mastersite.jmelo2008-01-311-1/+2 * - update to 1.5.2leeym2008-01-294-14/+6 * Revert unwanted commit while it's not too late.danfe2008-01-263-8/+7 * Clean up port descriptions for unmaintained ports in `archivers' category:danfe2008-01-2615-41/+40 * - Update to 20080117gabor2008-01-222-4/+4 * PHK is a PHP-oriented package/archive system. Basically, it can be consideredmiwi2008-01-214-0/+39 * A BSD-licensed replacement of the ar utility.gabor2008-01-194-0/+39 * . Update to 2.4.11.glewis2008-01-182-4/+4 * Update to 1.19. Changes in this releases:naddy2008-01-165-30/+35 * - Update to 3.11clsung2008-01-15