system/diit: Added (steganography tool).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
535dde2078
commit
eea00c8b77
|
@ -0,0 +1,7 @@
|
|||
Digital Invisible Ink Toolkit is a Java steganography tool that can
|
||||
hide any sort of file inside a digital image (regarding that the
|
||||
message will fit, and the image is 24 bit colour). There are four
|
||||
highly customisable algorithms in the tool, as well as an open-source
|
||||
implementation of RS Analysis (an extremely good steganalysis method).
|
||||
The tool has the additional advantage of being able to simulate hiding
|
||||
- so you can get an accurate map of where the information is hidden.
|
|
@ -0,0 +1,59 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Slackware build script for Digital Invisible Ink Toolkit
|
||||
|
||||
# Copyright 2012 Fridrich von Stauffenberg <cancellor2@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''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 AUTHOR 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.
|
||||
|
||||
PRGNAM=diit
|
||||
VERSION=${VERSION:-1.5}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
ARCH=noarch
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $OUTPUT $TMP $PKG/usr/share/$PRGNAM
|
||||
cat $CWD/$PRGNAM-$VERSION.jar > $PKG/usr/share/$PRGNAM/$PRGNAM.jar
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
cat $CWD/$PRGNAM.sh > $PKG/usr/bin/$PRGNAM
|
||||
chmod 755 $PKG/usr/bin/$PRGNAM
|
||||
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,11 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Name=DIIT
|
||||
GenericName=Digital Invisible Ink Toolkit
|
||||
Comment=Steganography tool
|
||||
Icon=diit
|
||||
Exec=diit
|
||||
Categories=System;
|
||||
MimeType=
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="diit"
|
||||
VERSION="1.5"
|
||||
HOMEPAGE="http://diit.sourceforge.net"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/diit/diit-1.5.jar"
|
||||
MD5SUM="dc6a4cd2af804f2dd69dcd4f9b524a70"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jdk"
|
||||
MAINTAINER="Fridrich von Stauffenberg"
|
||||
EMAIL="cancellor2@gmail.com"
|
Binary file not shown.
After Width: | Height: | Size: 67 KiB |
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
exec java -Xmx512m -jar /usr/share/diit/diit.jar
|
|
@ -0,0 +1,4 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# HOW TO EDIT THIS FILE:
|
||||
# The "handy ruler" below makes it easier to edit a package description.
|
||||
# Line up the first '|' above the ':' following the base package name, and
|
||||
# the '|' on the right side marks the last column you can put a character in.
|
||||
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
diit: diit (Digital Invisible Ink Toolkit)
|
||||
diit:
|
||||
diit: Digital Invisible Ink Toolkit is a Java steganography tool that can
|
||||
diit: hide any sort of file inside a digital image (regarding that the
|
||||
diit: message will fit, and the image is 24 bit colour). There are four
|
||||
diit: highly customisable algorithms in the tool, as well as an open-source
|
||||
diit: implementation of RS Analysis (an extremely good steganalysis method).
|
||||
diit: The tool has the additional advantage of being able to simulate hiding
|
||||
diit: - so you can get an accurate map of where the information is hidden.
|
||||
diit:
|
||||
diit: Homepage: http://diit.sourceforge.net
|
Loading…
Reference in New Issue