Main > Free Download Search >

Free posix software for mac

posix

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 35
Get UTF8 Posix Path 1.1

Get UTF8 Posix Path 1.1


Get UTF8 Posix Path - POSIX path tool more>>
Get UTF8 Posix Path is an AppleScript that provides a routine, with detailed documentation, to work around a bug where the POSIX path command incorrectly assumes that the shell will know how to handle all your Macintosh characters.
Enhancements:
- Added more detailed explanations of various Unix commands.
<<less
Download (32KB)
Added: 2006-01-05 License: Freeware Price:
785 downloads
Privoxy 3.0.14 Beta

Privoxy 3.0.14 Beta


Privoxy offers you a complete non-caching web proxy with advanced filtering capabilities which is designed for enhancing privacy, modifying web page data and HTTP headers, controlling access, and removing ads and other obnoxious Internet junk. more>>

Privoxy 3.0.14 Beta offers you a complete non-caching web proxy with advanced filtering capabilities which is designed for enhancing privacy, modifying web page data and HTTP headers, controlling access, and removing ads and other obnoxious Internet junk.

Privoxy has a flexible configuration and can be customized to suit individual needs and tastes. It has application for both stand-alone systems and multi-user networks. Privoxy is Free Software and licensed under the GPL2. Privoxy is an associated project of Software in the Public Interest (SPI).

Major Features:

  1. Can keep outgoing connections alive and reuse them later on.
  2. Supports tagging which allows to change the behavior based on client and server headers.
  3. Can be run as an "intercepting" proxy, which obviates the need to configure browsers individually.
  4. Sophisticated actions and filters for manipulating both server and client headers.
  5. Can be chained with other proxies.
  6. Integrated browser based configuration and control utility. Browser-based tracing of rule and filter effects. Remote toggling.
  7. Web page filtering (text replacements, removes banners based on size, invisible "web-bugs", JavaScript and HTML annoyances, pop-up windows, etc.)
  8. Modularized configuration that allows for standard settings and user settings to reside in separate files, so that installing updated actions files won't overwrite individual user settings.
  9. Support for Perl Compatible Regular Expressions in the configuration files, and a more sophisticated and flexible configuration syntax.
  10. Improved cookie management features (e.g. session based cookies).
  11. GIF de-animation.
  12. Bypass many click-tracking scripts (avoids script redirection).
  13. Multi-threaded (POSIX and native threads).
  14. User-customizable HTML templates for most proxy-generated pages (e.g. "blocked" page).
  15. Auto-detection and re-reading of config file changes.
  16. Improved signal handling, and a true daemon mode (Unix).
  17. Every feature now controllable on a per-site or per-location basis, configuration more powerful and versatile over-all.
  18. Many smaller new features added, limitations and bugs removed.

Enhancements:

  • The latency is taken into account when evaluating whether or not to reuse a connection. This should significantly reduce the number of connections problems several users reported.
  • If the server doesn't specify how long the connection stays alive, Privoxy errs on the safe side of caution and assumes it's only a second.
  • The error pages for connection timeouts or missing server data use a Last-Modified date in the past. Retry attempts are detected and Privoxy removes the If-Modified-Since header to prevent the server from responding with status code 304 in which case the client would reuse the error message.
  • Setting keep-alive-timeout to 0 disables keep-alive support. Previously Privoxy would claim to allow persistence but not reuse the connection.
  • Pipelined requests are less likely to be mistaken for the request body of the previous request. Note that Privoxy still has no real pipeline support and will either serialize pipelined requests or drop them in which case the client has to resent them.
  • Fixed a crash on some Windows versions when header randomization is enabled and the date couldn't be parsed.
  • Privoxy's keep-alive timeout for the current connection is reduced to the one specified in the client's Keep-Alive header.
  • For HTTP/1.1 requests, Privoxy implies keep-alive support by not If the socket isn't reusable, Privoxy doesn't temporarily waste a socket slot to remember the connection.
  • If keep-alive support is disabled but compiled in, the client's Keep-Alive header is removed.
  • Fixed a bug on mingw32 where downloading large files failed if keep-alive support was enabled.
  • Fixed a bug that (at least theoretically) could cause log timestamps to be occasionally off by about a second.
  • No Proxy-Connection header if added if there already is one.
  • The configure script respects the $PATH variable when searching for groups and id.
<<less
Download (1.6MB)
Added: 2009-07-26 License: Freeware Price: FREE
downloads
 
Other version of Privoxy
Privoxy 3.0.10-1Multi-threaded (POSIX and native threads). User-customizable HTML templates for most proxy-generated pages (e.g. "blocked" page). Auto-detection and re-reading of config file changes
License:Free
Download (848K)
downloads
Added: 2008-12-13
rb-appscript 0.5

rb-appscript 0.5


rb-appscript gives a tool to monitor scriptable Mac OS X applications applying ordinary Ruby scripts. more>>

rb-appscript 0.5 gives a tool to monitor scriptable Mac OS X applications applying ordinary Ruby scripts. Appscript makes Ruby a serious alternative to Apples own AppleScript language for automating your Mac.

Simple all-in-one binary installers are provided for Apple-installed Ruby 1.8 on Mac OS 10.4.x, and source files are included for installing appscript on other OS/Ruby versions. Example scripts, documentation and tutorial are also included.

Enhancements:

  • OSAX module no longer errors on import in 10.5 if a ScriptingAdditions folder (e.g. ~/Library/ScriptingAdditions) doesn't exist
  • added Appscript: Application#is_running method
  • added hfs_path, #hfs_path methods to MacTypes: Alias, MacTypes:FileURL; existing path, #path methods now use CFURL functions to convert between POSIX paths and URLs
  • aem/appscript now raises Connect: CantLaunchApplicationError instead of AE:MacOSError if unable to launch an application. Users should update existing code as necessary.
  • fixed extconf.rb so that universal binaries build correctly
  • built-in help system now uses ASDictionary 0.9.0+ instead of AppscriptHelpAgent. (AppscriptHelpAgent is no longer used as-of rb-appscript 0.5.0 and may be removed if previously installed.)
  • #help method now writes messages to stderr instead of stdout
  • Appscript: Reference#respond_to? now has identical signature to Object#respond_to? (optional second argument was previously missing)
  • fixed bug in AE.convert_long_date_time_to_unix_seconds (used to unpack AEDescs of typeLongDateTime) where it would crash if passed a FixNum instead of a BigNum
  • now allow methods that have been added to Object class at runtime (e.g. importing the pp module adds #pretty_print and #pretty_inspect) to be invoked on Appscript:Reference and Appscript:Application instances, assuming that the reference object doesnt already have a property/element/command by the same name. In other words, instances of these classes now behave more or less the same as instances of ordinary subclasses that use bound methods rather than #method_missing to handle incoming messages. Previously, calling (e.g.) #pretty_inspect on an appscript reference would result in a property/element/command not found error.
  • improved behaviour of Appscript:Application#AS_new_reference when argument is nil (now returns a new reference to the root application object)
  • OSAX:Application initialiser now optionally accepts static terminology glue module as its second argument. This is partly to provide scripts that need to run in 64-bit processes with a workaround for accessing the OSAX module, which cant yet automatically obtain osax terminology under 64-bit (see TODO file).
  • added process_exists_for_path?, process_exists_for_pid?, process_exists_for_url?, process_exists_for_desc? class methods to AEM: Application
  • deprecated AEM:Application.is_running? (will be removed in 1.0.0); any existing code that uses this method should be updated to use AEM: Application.process_exists_for_path? instead
  • fixed minor formatting flaw in generic references #to_s method
  • AEM:Application is now a subclass of AEMReference: Base, allowing aem Codecs instances to pack it
  • added AB_export_vcard.rb sample script

Requirements:

  • Mac OS X 10.3 or later
  • Ruby 1.8 or later.
<<less
Download (240K)
Added: 2007-12-27 License: Free Price:
downloads
p7zip 9.04

p7zip 9.04


A quick port of 7z.exe and 7za.exe for Unix more>> A quick port of 7z.exe and 7za.exe for Unix

p7zip is a port of 7za.exe for POSIX systems like MacOS X, Unix (Linux, Solaris, OpenBSD, FreeBSD, AIX, Cygwin, ...), and BeOS.
7-Zip is a file archiver with highest compression ratio. Since 4.10, p7zip (like 7-zip) supports little-endian and big-endian machines.
NOTE: To install, open a terminal, go to the source directory and run "make" without the quotes.

Enhancements
From Windows version of 7-zip 9.04 :
- 7-Zip now can update solid .7z archives.
- 7-Zip now supports LZMA2 compression method.
- 7-Zip now supports XZ archives.
- 7-Zip now can unpack NTFS, FAT, VHD and MBR archives.
- 7-Zip now can unpack GZip, BZip2, LZMA, XZ and TAR archives from stdin.
- New -scrc switch to calculate total CRC-32 during extracting / testing.
- Some bugs were fixed.
- #2799966 " A newly created 7z archive (by p7zip 4.65) is broken and cannot be unpacked / listed / tested"
- Fixed : now "7za a -mx=9 archive.7z directory" creates a good archive even
- if there are a lot of executable files.
- Fixed : the RAM size was reported incorrectly on MacOSX 64bits (with 2Gb+ RAM)
- #2798023 "segfault handling very large multivolume .7z file"
- p7zip now displays the following error "Error: Too many open files"
- if you dont have enough rights to open all the splitted files
- ( on Linux : ulimit -n)

<<less
Download (3.6MB)
Added: 2009-06-09 License: GPL Price: FREE
187 downloads
 
Other version of p7zip
p7zip 4.61p7zip is a port of 7za.exe for POSIX systems like MacOS X, Unix (Linux, Solaris, OpenBSD, FreeBSD, AIX, Cygwin, ...), and BeOS. 7-Zip is a file archiver with highest compression ratio. Since 4.10
Price: FREE
License:GPL
Download (2.4MB)
186 downloads
Added: 2008-12-02
Path Extensions 1.0

Path Extensions 1.0


Path Extensions - Extend the FolderItem built-in class more>>
This module and attendant modules and classes provide a way for REALbasic 5.2 to access file paths in a variety of useful and interesting ways under Mac OS X (tested under 10.2.6).

Although paths should be avoided under Mac OS (any version) there are times when it may be useful to have them. These include use of the shell class, display to the user, and passing to AppleScript. This module extends the REALbasic FolderItem class by providing a number of methods to extract the path information.

Path Extensions is a REALbasic snippet which allows you to extend the FolderItem built-in class with the ability to get POSIX-compliant paths, better HFS paths, a windows path and file URLs.

<<less
Download (49KB)
Added: 2005-11-30 License: Freeware Price:
1424 downloads
Shoki 0.3.0

Shoki 0.3.0


Network intrusion detection system for your Mac more>> Network intrusion detection system for your Mac

Shoki is a free, open source network intrusion detection system for conducting traffic analysis.
The fundamental design goals of shoki are:
- Simplicity. The components of shoki are designed to be as straightforward (and therefore as easy to understand) as possible
- Modularity. The functionalities provided by the various components of shoki are intended to be as decoupled from each other as practically possible
NOTE: Shoki is licensed and distributed under the terms of the BSD License.

Main features:
- Signature matching using libpcap-style filter expressions
- Support for searches using POSIX extended regular expressions
- Optional support for searches using Perl-compatible regular expressions
- Dynamic rule-based signature generation
- Correlation of data from multiple sources
- Sending alerts to IM clients via the Jabber protocol
- Visualisation of packet data via OpenGL
- Anomaly scoring based on questionable math
- Correlation of events to local assets (and known vulnerabilities)
- Remote OS identification via passive fingerprinting
- RFC 815-style fragment reassembly
- Configurable scan detection
- Configurable threshold-based signature detection
- Analysis of entropy in IP packet fields

System requirements:
- libpcap
- flex
-

Enhancements
- lexer bugfix: Added pcap_close() before exiting
- doctrine logic bugfix: fixed bug in doctrine verifier
- doctrine logic tweak: added canonicalise_pcap()
- search logic bugfix: fixed bug handling NULLs (0x00) in hex searches
- TCP option handling bugfix: fixed bug in TCP option processing on sparc64 (and other platforms where unaligned access fails)
- ac bugfix: fixed memory allocation error in ac(1)
- feature add: added preliminary IDMEF output support
- feature add: added test for dumpfile rewriting
- scripting tweak: changed semantics in some scripts in handling lists of filenames

<<less
Download (267KB)
Added: 2008-10-02 License: Freeware Price: FREE
218 downloads
RobotVisionCAD 4.2.3

RobotVisionCAD 4.2.3


RobotVisionCAD is created to be an advanced computer aided design for Image Processing and Computer Vision. more>>

RobotVisionCAD 4.2.3 is created to be an advanced computer aided design for Image Processing and Computer Vision. RvCAD's GUI presents users with a view where users drag and drop Image Processor Elements, and visually connecting them to form Image Processing Pipeline. RvCAD is a tool used by scientists, engineers, mathematicians to explore Machine Vision and Image Processing algorithms. Drag and Drop UI, visually design Machine Vision Pipeline RvCAD runs on Win32 and most posix system, etc, linux, BSD and Mac OS X Pipeline architecture scales to MultiCore, and SMP CPU.

Supports real-time live video processing from VideoForWindow, DirectShow(WDM), Video4Linux on linux and Video Digitizer on Mac OS X, compatible capture device. Support reading and writing the following image files: avi, mpeg, bmp, jpeg, png, pcx, xpm, and tiff. Customizable through loadable module. You can add your own custom libraries to RvCAD. Code Generators create the templates for your custom library elements. You insert your own C/C++ code into the specified locations. Compile, and add the result to your library.

Requirements:

  • Mac OS X 10.4.7 or higher
  • QuickTime 7.1.2
<<less
Download (11.3MB)
Added: 2006-10-25 License: Freeware Price:
downloads
MySQL for OSX 3.23.52

MySQL for OSX 3.23.52


MySQL, the most popular Open Source SQL database, is provided by MySQL AB. MySQL AB is a commercial company that builds its business providing services around the MySQL database more>> MySQL, the most popular Open Source SQL database, is provided by MySQL AB. MySQL AB is a commercial company that builds its business providing services around the MySQL database. We recommend visiting MacOSXHints.com for finding guides for installation and troubleshooting.
Requirements:
MacOS X 10.2 or later.
Enhancements:
Version 3.23.52 adds support for POSIX threads and InnoDB. The installer will create a mysql user and group on your system if they do not already exist. This is required to safely run MySQL on your computer. All files are installed into /Library/MySQL.
<<less
Download (3.8MB)
Added: 2002-09-09 License: Free Price:
downloads
Mac_Unix_Path 1.0

Mac_Unix_Path 1.0


Mac_Unix_Path - Convert a Mac alias path to a Posix path more>>
Mac_Unix_Path is a subroutine, which you can add to any script, that converts a Mac alias path to a Posix path. It properly converts special characters (: / " ? *) and takes volumes into account.

Input can be an alias or string. Output is a string. As an example, when the script is run from a script editor, it will display the Mac and Unix path of the current Finder item, then send the posix path to the clipboard.

Completly freeware for personal use.
<<less
Download (7KB)
Added: 2006-05-26 License: Freeware Price:
1248 downloads
Get_Path 1.0

Get_Path 1.0


Get_Path will write full path information in the clipboard more>>
Drag & Drop or select an item, choose between UNIX (POSIX), URL and Mac OS (HFS) formats and Get_Path will write full path information in the clipboard.
Batch selection is supported.
<<less
Download (212KB)
Added: 2007-01-15 License: Freeware Price:
1012 downloads
Capivara 0.8.7

Capivara 0.8.7


A two pane file manager with support for SFTP and FTP servers more>>
Capivara 0.8.7 offers you a two pane file manager which supports SFTP and FTP servers. Capivara is not an ordinary file manager because it adds synchronization features like comparing timestamps or SHA-1 hash values. The synchronization of Capivara has a preview mode to shows which files are going to be deleted or copied.The basic look and most key bindings are inspired from two file managers mc and worker.

Major Features:

  1. File synchronization
  2. Preview mode for synchronization
  3. SFTP/FTP support
  4. Multi-language support, German, English, Chinese, French, Portuguese, Polish, ...
  5. Supports POSIX file permissions on Linux
  6. Runs on Windows, Linux, Solaris, Unix, Mac OS X,..

Enhancements: Fixed many bugs.

Requirements:

  • Universal Binary
  • Java
<<less
Download (3.1MB)
Added: 2009-06-11 License: GPL Price: FREE
11 downloads
 
Other version of Capivara
Capivara 0.8.6Supports POSIX file permissions on Linux - Runs on Mac OS X, Windows, Linux, Solaris, Unix. System requirements: - Java
Price: FREE
License:GPL
Download (3.1MB)
200 downloads
Added: 2009-06-08
MogileFS 2.20

MogileFS 2.20


Distributed (meta) file system. Spray files across cheap disks on your network. Pay less for storage. No proprietary on-disk file formats. more>> Distributed (meta) file system. Spray files across cheap disks on your network. Pay less for storage. No proprietary on-disk file formats.

MogileFS is an open source distributed filesystem. MogileFS is not:
- POSIX Compliant -- you dont run regular Unix applications or databases against MogileFS. Its meant for archiving write-once files and doing only sequential reads. (though you can modify a file by way of overwriting it with a new version)
- Completely portable ... yet -- there still is some Linux-ism in the code, at least in the HTTP transport cod, but the plan is to scrap that and make it portable

Main features:>
- Application level -- no special kernel modules required.
- No single point of failure -- all three components of a MogileFS setup (storage nodes, trackers, and the trackers database(s)) can be run on multiple machines, so theres no single point of failure. (you can run trackers on the same machines as storage nodes, too, so you dont need 4 machines...) A minimum of 2 machines is recommended.
- Automatic file replication -- files, based on their "class", are automatically replicated between enough different storage nodes as to satisfy the minimum replica count as requested by their class. For instance, for a photo hosting site you can make original JPEGs have a minimum replica count of 3, but thumbnails and scaled versions only have a replica count of 1 or 2. If you lose the only copy of a thumbnail, the application can just rebuild it. In this way, MogileFS (without RAID) can save money on disks that would otherwise be storing multiple copies of data unnecessarily.
- "Better than RAID" -- in a non-SAN RAID setup, the disks are redundant, but the host isnt. If you lose the entire machine, the files are inaccessible. MogileFS replicates the files between devices which are on different hosts, so files are always available.
- Flat Namespace -- Files are identified by named keys in a flat, global namespace. You can create as many namespaces as youd like, so multiple applications with potentially conflicting keys can run on the same MogileFS installation.
- Shared-Nothing -- MogileFS doesnt depend on a pricey SAN with shared disks. Every machine maintains its own local disks.
- No RAID required -- Local disks on MogileFS storage nodes can be in a RAID, or not. Its cheaper not to, as RAID doesnt buy you any safety that MogileFS doesnt already provide.
- Local filesystem agnostic -- Local disks on MogileFS storage nodes can be formatted with your filesystem of choice (ext3, XFS, etc..). MogileFS does its own internal directory hashing so it doesnt hit filesystem limits such as "max files per directory" or "max directories per directory". Use what youre comfortable with.

<<less
Download (258KB)
Added: 2008-10-03 License: Freeware Price: FREE
388 downloads
Tinyproxy 1.6.4

Tinyproxy 1.6.4


Free and open source HTTP proxy for your Mac more>> Free and open source HTTP proxy for your Mac

Tinyproxy is a fast light-weight HTTP proxy for POSIX operating systems. Tinyproxy is designer from the ground up to be fast and yet small and it is an ideal solution for use cases such as embedded deployments where a full featured HTTP proxy is required, but the system resources for a larger proxy are unavailable.
Main features:
- Anonymous mode: Allows you to specify which HTTP headers should be allowed through, and which should be blocked. This allows you to restrict both what data comes to your web browser from the HTTP server (eg., cookies), and to restrict what data is allowed through from your web browser to the HTTP server (eg., version information).
- Easily modified: If youre looking to build a custom web proxy, Tinyproxy is very easy to modify to your custom needs. The source is straightforward, adhering to the KISS principle. As such, it can be used as a foundation for anything you may need a web proxy to do.
- Remote monitoring: Using the remote monitoring feature, you can access proxy statistics from afar, letting you know exactly how busy the proxy is.
- Load average monitoring: Tinyproxy can be configured to watch the load average on most platforms, and start refusing requests when the load reaches a certain point. You may recognize this feature from Sendmail.
- Access control: You can configure Tinyproxy to only allow requests from a certain subnet, or from a certain interface, thus allowing you to ensure that random, unauthorized people will not be using your proxy.
- Secure: With a bit of configuration (specifically, making the log file owned by nobody and running it on a port > 1024), Tinyproxy can be made to run without any special privileges, thus minimizing the chance of system compromise. Furthermore, it was designed with an eye towards preventing buffer overflows. The simplicity of the code ensures it remains easy to spot such bugs.
- Small footprint: As mentioned above, Tinyproxy requires very little in the way of system resources. The memory footprint tends to be around 2 MB with glibc, and the CPU load increases linearly with the number of simultaneous connections (depending on the speed of the connection). Thus, Tinyproxy can be run on an older machine, or on a network appliance such as a Linux-based broadband router, without any noticeable impact on performance.

<<less
Download (309KB)
Added: 2008-08-25 License: GPL Price: FREE
191 downloads
Duplicity 0.6.03

Duplicity 0.6.03


Duplicity is a helpful tool with which you can back directories by producing encrypted tar-format volumes and uploading them to a remote or local file server. more>>

Duplicity 0.6.03 is a helpful tool with which you can back directories by producing encrypted tar-format volumes and uploading them to a remote or local file server. Because duplicity uses librsync, the incremental archives are space efficient and only record the parts of files that have changed since the last backup. Because duplicity uses GnuPG to encrypt and/or sign these archives, they will be safe from spying and/or modification by the server.

The duplicity package also includes the rdiffdir utility. Rdiffdir is an extension of librsync's rdiff to directories---it can be used to produce signatures and deltas of directories as well as regular files. These signatures and deltas are in GNU tar format.

Duplicity is still in Beta. As any software, it may still have a few bugs, but will work for normal usage and is in use now for large personal and corporate backups.

In theory many protocols for connecting to a file server could be supported; so far ssh/scp, local file access, rsync, ftp, HSI, WebDAV, and Amazon S3 have been written. Currently duplicity supports deleted files, full unix permissions, directories, and symbolic links, fifos, and device files, but not hard links.

Major Features:

  1. Easy to use: Although duplicity is a command-line utility, the semantics are relative simply. To take a basic example, this command: duplicity /usr scp://host.net/target_dir backs up the /usr directory to the remost host host.net via scp.
  2. Encrypted and signed archives: The archives that duplicity produces can be encrypted and signed using GnuPG, the standard for free software cryptology. The remote location will not be able to infer much about the backups other than their size and when they are uploaded. Also, if the archives are modified on the remote side, this will be detected when restoring.
  3. Bandwidth and space efficient: Duplicity uses the rsync algorithm so only the changed parts of files are sent to the archive when doing an incremental backup. For instance, if a long log file increases by just a few lines of text, a small diff will be sent to and saved in the archive. Other backup programs may save a complete copy of the file.
  4. Standard file format: Athough archive data will be encrypted, inside it is in standard GNU-tar format archives. A full backup contains normal tarballs, and incremental backups are tar archives of new files and the deltas from previous backups. The deltas are in the format produced by librsync's command-line utility rdiff.
  5. Although you should never have to look at a duplicity archive manually, if the need should arise they can be produced and processed using GnuPG, rdiff, and tar.
  6. Choice of remote protocol: Duplicity does not make many demands on its archive server. As long as files can be saved to, read from, listed, and deleted from a location, that location can be used as a duplicity backend. Besides increasing choice for the user, it can make a server more secure, as clients only require minimal access. Currently local file storage, scp/ssh, ftp, rsync, HSI, WebDAV, and Amazon S3 are supported, and others shouldn't be difficult to add.

Requirements:

  • Duplicity requires a POSIX-like operating system. It is best used under GNU/Linux. It also requires:
    • Python v2.3 or later (Python Home)
    • librsync v0.9.6 or later (librsync Home)
    • GnuPG for encryption (GnuPG Home)
    • NcFTP version 3.1.9 or later (NcFTP Home)
    • Boto 0.9d or later (Boto Home)
  • If you install from the source package, you will also need:
    • Python development files, normally found in module 'python-dev'
    • librsync development files, normally found in module 'librsync-dev'

Enhancements:

  • Restart error handling has been smoothed out a great deal and it "does what is right" in order to keep going.
  • Backends are now optional, if they fail an Info message is put out to notify of the failure and why.
  • There was more work on translations and internationalization.
<<less
Download (225KB)
Added: 2009-07-31 License: GPL Price: FREE
downloads
Encrypt This 1.0b7

Encrypt This 1.0b7


Encrypt This - Drag/drop files/folders to encrypt them to a disk image more>>
Encrypt This is a Universal Binary AppleScript application for Mac OS X 10.4 or later (and may work on earlier versions of OS X but has not yet been tested on them) that takes all the files and folder you drag onto the Encrypt This icon and creates an AES 128-bit encrypted .dmg disk image file which contains those files and folders.
You are prompted for a pass-phrase upon dropping files onto the Encrypt This icon. That same pass-phrase must be used to access the disk image in the future.
Enhancements:
- Rewrote most move operation code to use POSIX file path references under Tiger in order to work around a bug in Finders inability to resolve file paths when FileVault is turned on in Mac OS X 10.4.
- Added some error trapping in case the disk image creation process fails.
- Added OS version checking so that if this application is run on systems prior to 10.3.0, it will notify the user that it does not work on their version of the OS.
<<less
Download (64KB)
Added: 2006-05-19 License: Freeware Price:
1257 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3