Giter Club home page Giter Club logo

oss's Introduction

암호화된 문자를 사진에 넣는 "steganography"

지원 확장자 (추가 확인)

  • JPG
  • GIF
  • PNG
  • BMP
  • ICO

미지원 확장자 (추가 확인)

  • PDF

설치법

추후에 어떤식으로 할지 결정

예제 사진

입력_사진

input

출력_사진

input

예제 명령어

# encode example: 사진에 문자열을 숨김
>>>steganography -e 입력_사진_경로 출력_사진_경로 문자열

# decode example: 사진으로 부터 숨겨진 문자열을 읽음
>>>steganography -d 출력_사진_경로
숨겨 놓은 "문자열" 출력

예제 코드

# -*- coding: utf-8 -*-
from __future__ import absolute_import, unicode_literals
from steganography.steganography import Steganography

print "-*- hide text to image -*-"
path = "/Users/ryuminsu/Documents/GitHub/steganography/sample/Stallman.jpg"
output_path = "/Users/ryuminsu/Documents/GitHub/steganography/sample/Stallman_out.jpg"
text = 'Hello, this is testing code'
Steganography.encode(path, output_path, text)


print "-*- read secret text from image -*-"
secret_text = Steganograpy.decode(output_path)
print secret_text

oss's People

Contributors

merrym4n avatar 34t3rnull avatar wizleysw avatar githubrat avatar ltshub avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.