FreshPorts -- The Place For Ports Fri, 22 Aug 2008 1:01 AM BST
FreshPorts is now runing off the BETA server. Enjoy for now.
Port details
beecrypt 4.1.2_1 security on this many watch lists=2 search for ports that depend on this port
BeeCrypt is an open source cryptography library

There is no maintainer for this port.
Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org search for ports maintained by this maintainer
Port Added: 04 Mar 2001 01:37:05


BeeCrypt is an open source cryptography library that contains highly
optimized C and assembler implementations of many well-known algorithms
including Blowfish, MD5, SHA-1, Diffie-Hellman, and ElGamal. Unlike
some other crypto libraries, BeeCrypt is not designed to solve one
specific problem, like file encryption, but to be a general purpose
toolkit which can be used in a variety of applications.

The BeeCrypt library currently includes: 
   - Entropy sources for initializing pseudo-random generators 
   - Pseudo-random generators: FIPS-186, Mersenne Twister 
   - Block ciphers: Blowfish 
   - Hash functions: MD5, SHA-1, SHA-256 
   - Keyed hash functions: MD5/HMAC, SHA-1/HMAC, SHA-256/HMAC 
   - Multi-precision integer library, with assembler-optimized routines 
   - Probabilistic primality testing, with optimized small prime trial
     division 
   - Discrete logarithm parameter generation over a prime field 
   - Diffie-Hellman key agreement 
   - DHAES encryption scheme 
   - ElGamal signature scheme (two variants) 
   - Basic RSA primitives and key pair generation 

WWW: http://sourceforge.net/projects/beecrypt
CVSWeb : Sources : Main Web Site : Distfiles Availability : PortsMon
Required To Build: devel/libtool15

To install the port: cd /usr/ports/security/beecrypt/ && make install clean
To add the package: pkg_add -r beecrypt


Configuration Options
     No options to configure

Master Sites:
http://nchc.dl.sourceforge.net/sourceforge/beecrypt/
http://kent.dl.sourceforge.net/sourceforge/beecrypt/
http://easynews.dl.sourceforge.net/sourceforge/beecrypt/
http://ufpr.dl.sourceforge.net/sourceforge/beecrypt/
http://umn.dl.sourceforge.net/sourceforge/beecrypt/
http://heanet.dl.sourceforge.net/sourceforge/beecrypt/
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/

Number of commits found: 24

Commit History - (may be incomplete: see CVSWeb link above for full details)
DateByDescription
21 Aug 2008 07:18:49
Original commit files touched by this commit  4.1.2_1
rafan search for other commits by this committer
Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
(Only the first 15 lines of the commit message are shown above View all of this commit message)
01 Feb 2007 02:42:06
Original commit files touched by this commit  4.1.2_1
kris search for other commits by this committer
Use libtool port instead of included version to avoid objformat a.out botch
15 Aug 2006 02:04:55
Original commit files touched by this commit  4.1.2_1
clsung search for other commits by this committer
- s,INSTALLS_SHLIB,USE_LDCONFIG,g
- these include security/ sysutils/ textproc/ maintained by ports@

PR:             ports/101916
Submitted by:   Gea-Suan Lin <gslin_AT_gslin dot org>
13 May 2006 05:15:53
Original commit files touched by this commit  4.1.2_1
edwin search for other commits by this committer
Remove USE_REINPLACE from all categories starting with S
23 Feb 2006 10:40:45
Original commit files touched by this commit  4.1.2_1
ade search for other commits by this committer
Conversion to a single libtool environment.

Approved by:    portmgr (kris)
25 Nov 2005 18:01:16
Original commit files touched by this commit  4.1.2
pav search for other commits by this committer
- Add SHA256
15 Nov 2005 06:52:12
Original commit files touched by this commit  4.1.2
ade search for other commits by this committer
Mass-conversion to the USE_AUTOTOOLS New World Order.  The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
        http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
21 Apr 2005 18:44:08
Original commit files touched by this commit  4.1.2
krion search for other commits by this committer
Drop maintership.
12 Apr 2005 04:26:57
Original commit files touched by this commit  4.1.2
obrien search for other commits by this committer
At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
11 Apr 2005 09:04:41
Original commit files touched by this commit  4.1.2
obrien search for other commits by this committer
Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
26 Dec 2004 18:45:32
Original commit files touched by this commit  4.1.2
krion search for other commits by this committer
Update to 4.1.2
29 Nov 2004 21:15:29
Original commit files touched by this commit  4.1.1
krion search for other commits by this committer
Fix build with native java.

Submitted by:   glewis
27 Nov 2004 10:03:41
Original commit files touched by this commit  4.1.1
krion search for other commits by this committer
Update to 4.1.1
09 Jul 2004 18:43:11
Original commit files touched by this commit  3.1.0
marcus search for other commits by this committer
Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:             63944
Based on work by:eik and marcus
Approved by:    ade (autotools maintainer)
Tested by:      kris on pointyhat
Bound to be hidden problems:    You bet
25 May 2004 06:31:10
Original commit files touched by this commit  3.1.0
krion search for other commits by this committer
- Remove dead MASTER_SITES

PR:             ports/67156
Submitted by:   Roman Neuhauser <neuhauser@chello.cz>
16 Apr 2004 15:42:39
Original commit files touched by this commit  3.1.0
krion search for other commits by this committer
- Remove USE_SIZE knob
14 Mar 2004 06:17:56
Original commit files touched by this commit  3.1.0
ade search for other commits by this committer
Whoa there, boy, that's a mighty big commit y'all have there...

Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

        USE_LIBTOOL=YES         ->      USE_LIBTOOL_VER=13
        USE_AUTOCONF=YES        ->      USE_AUTOCONF_VER=213
        USE_AUTOMAKE=YES        ->      USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
30 Jan 2004 14:05:15
Original commit files touched by this commit  3.1.0
krion search for other commits by this committer
- SIZEify
18 Aug 2003 11:33:13
Original commit files touched by this commit  3.1.0
krion search for other commits by this committer
- Update to 3.1.0
22 Jul 2003 11:34:12
Original commit files touched by this commit  3.0.0
krion search for other commits by this committer
Change my mail to @FreeBSD.org

Approved by:    fjoe (mentor)
22 Jun 2003 04:14:35
Original commit files touched by this commit  3.0.0
ijliao search for other commits by this committer
upgrade to 3.0.0
pass maintainership to submitter

PR:             53586
Submitted by:   Kirill Ponomarew <ponomarew@oberon.net>
07 Mar 2003 06:10:51
Original commit files touched by this commit  2.1.0
ade search for other commits by this committer
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
14 Jun 2001 07:42:15
files touched by this commit
ijliao search for other commits by this committer
upgrade to 2.1.0    
04 Mar 2001 04:37:05
files touched by this commit
ijliao search for other commits by this committer
add beecrypt, an open source cryptography library    

Number of commits found: 24

Login
User Login
Create account

Servers and bandwidth provided by
New York Internet
SuperNews

Search
Enter Keywords:
 
more...

Latest Vulnerabilities
gnutlsAug 21
joomla15*Aug 20
bugzilla*Aug 19
bugzilla2*Aug 19
cdfAug 19
drupal5Aug 18
drupal6Aug 18
ruby18Aug 16
ruby18Aug 16
ruby18Aug 16
ruby18-nopthreadsAug 16
ruby18-nopthreadsAug 16
ruby18-nopthreadsAug 16
ruby19Aug 16
ruby19Aug 16

9 vulnerabilities affecting 11 ports have been reported in the past 14 days

* - modified, not new

All vulnerabilities


Ports
Home
Categories
Deleted ports
Sanity Test Failures
Newsfeeds


Statistics
Graphs
Traffic

Calculated hourly:
Port count 19043
Broken 162
Deprecated 92
Ignore 430
Forbidden 6
Restricted 310
No CDROM 130
Vulnerable 50
Expired 16
Set to expire 71
Interactive 78
new 24 hours 2
new 48 hours5
new 7 days40
new fortnight146
new month242

This site
What is FreshPorts?
About the Authors
FAQ
How big is it?
The latest upgrade!
Privacy
Forums
Blog
Contact

Add tab to Netscape 6

Servers and bandwidth provided by
New York Internet
SuperNews
Valid HTML, CSS, and RSS.
Copyright © 2000-2008 DVL Software Limited. All rights reserved.
This page created in 0.961 seconds.