نمایش نتایج 1 تا 6 از 6

نام تاپیک: Steganography

  1. #1
    VIP آواتار hr110
    تاریخ عضویت
    بهمن 1381
    محل زندگی
    ایران - تهران
    پست
    1,460

    Steganography

    بخش رمز نگاری یکی از بخشهای فعال سایت بوده و با وجود اهمیت آن متاسفانه چند وقتی است که هیچ مطلبی در آن قرار نمیگیرد. بنابراین بد ندیدم که برای اینکه از این سوت و کوری خارج شود یک مطلب در آن قرار دهم.
    مطلب زیر را از سایت حامد بنایی برایتان نقل میکنم:

    Steganography ، هنر مخفی کردن یک متن در متن دیگر ، یکی از هم خانواده های Cryptography یا رمزنگاری است که امروزه بدلیل در خواست صنعت در به جا گذاشتن آثاری در فیلم های ویدئویی و صدا برای اعمال copyright استفاده فراوانی پیدا کرده است . به عمل اضافه کردن نشانه ای در عکس ، ویدئو یا صدا برای نشان دهنده هویت آن اثر ، watermarking یا fingerprinting می گویند.
    ادامه : http://www.hamedbanaei.com/articles/...graphy1382.htm
    ... چه بگویم که غم از دل برود چون تو بیایی

  2. #2
    :flower:

  3. #3

    نقل قول: Steganography

    سلام
    میخواستم ببینم کسی روی پنهان نگاری(steganography ) در نرم افزار متلب کار کرده است؟
    اگر کسی کاری انجام داده لطفا راهنمایی و کمک کنید.
    ممنون

  4. #4
    کاربر دائمی آواتار مصطفی ساتکی
    تاریخ عضویت
    اردیبهشت 1386
    محل زندگی
    www.7khatcode.com
    پست
    1,193

    نقل قول: Steganography

    در حالت خیلی ساده می تونید با یک عملیات حذف بیت اینکارو انجام بدید در تصاویر RGB شما 24 بیت دارای با حذف یک سری بیت و جایگرین کردن آنها با بیت های تصویر مقصد این کار قابل انجامه.
    روش های نو هم در این زمینه وجود داره که این کارو با تبدیل Wavelet انجام میده.
    پروژه آماده هم اگه نیاز دارید سرچ کنید

  5. #5

    نقل قول: Steganography

    ممنون از راهنماییتون ولی هر چی جستجو میزنم لینک یا چیز بدرد بخوری نمی آید.
    ممنون می شم اگه پروژه ای دارید برام بفرستید(هر چند خیلی ساده باشد).

  6. #6
    کاربر دائمی آواتار مصطفی ساتکی
    تاریخ عضویت
    اردیبهشت 1386
    محل زندگی
    www.7khatcode.com
    پست
    1,193

    نقل قول: Steganography

    این هم یه نمونه برنامه

    // Do the actual encryption of the message inside the picture.
    procedure TForm1.btnEncryptClick(Sender: TObject);
    var
    x, y, i, j: Integer;
    PixelData: TColor;
    CharMask, CharData: Byte;
    begin
    // Assign the original picture to both the target encrypted image
    // and delta image. Also make sure thier resolution is sufficient to
    // indicate the change in the LSB.
    imgTarget.Picture.Assign(imgOrig.Picture);
    imgDelta.Picture.Assign(imgOrig.Picture);
    imgTarget.Picture.Bitmap.PixelFormat := pf32bit;
    imgDelta.Picture.Bitmap.PixelFormat := pf32bit;
    x := 0;
    y := 0;
    // The letter 'c' is identified by the binary representation of '10000011'
    // for each '1' in this number change the current pixel's LSB value.
    with imgTarget.Picture.Bitmap do
    for i := 1 to Length(sourceMessage.Text) do
    begin
    CharMask := $80;
    // 8 bytes for every letter to be encrypted.
    for j := 1 to 8 do
    begin
    // See if the current byte in the character is either '1' or '0'.
    CharData := Byte(sourceMessage.Text[i]) and CharMask;
    //Data is not zero - change the LSB of the current pixel.
    if (CharData <> 0) then
    begin
    // Xor the LSB value - hence change its value.
    PixelData := Canvas.Pixels[x, y] xor $1;
    // Store the changed pixel color back in the Pixels array.
    Canvas.Pixels[x, y] := PixelData;
    end;

    // Move to the next pixel.
    x := (x + 1) mod Width;
    if (x = 0) then
    begin
    Inc(y);
    end;
    // Move the mask to be applied to the current character to the
    // right, hence will now examine the next bit in the binary
    // representation of the current letter to be encrypted.
    CharMask := CharMask shr 1;
    end;
    end;
    // Show the difference in the Delta image.
    for y := 0 to imgOrig.Picture.Bitmap.Height -1 do
    for x := 0 to imgOrig.Picture.Bitmap.Width -1 do
    // Check for difference, the difference will show in the LSB of every
    // pixel in the original and target images.
    if (imgOrig.Picture.Bitmap.Canvas.Pixels[x, y] <>
    imgTarget.Picture.Bitmap.Canvas.Pixels[x, y]) then
    imgDelta.Picture.Bitmap.Canvas.Pixels[x, y] := clYellow;
    end;


    // Decryption ( by Lemy )
    procedure TForm1.btnDecryptClick(Sender: TObject);
    Var
    x, y: integer;
    mask, ch: byte;
    begin
    sourceMessage.Clear;
    mask := $80;
    ch := 0;
    for y := 0 to imgOrig.Picture.Bitmap.Height -1 do
    begin
    for x := 0 to imgOrig.Picture.Bitmap.Width -1 do
    begin
    // if the pixel is different then set related bit
    if (imgOrig.Picture.Bitmap.Canvas.Pixels[x, y] <>
    imgTarget.Picture.Bitmap.Canvas.Pixels[x, y]) then
    ch := ch or mask;
    // shift the bit to the rigtht
    mask := mask shr 1;
    // if the mask is 0 then the dexryption of a char is completed
    // so add to the Text and rest the highest bit
    if mask = 0 Then
    begin
    sourceMessage.Text := sourceMessage.Text + char(ch);
    mask := $80;
    ch := 0;
    end;
    end;
    end;
    end;


تاپیک های مشابه

  1. Steganography چگونه نقش RTCP را در VoIP بازی میکنه ؟
    نوشته شده توسط Identifier در بخش امنیت در شبکه
    پاسخ: 0
    آخرین پست: چهارشنبه 29 شهریور 1385, 14:51 عصر
  2. Steganography Detection and algorithm
    نوشته شده توسط houtanal در بخش امنیت در نرم افزار و برنامه نویسی
    پاسخ: 2
    آخرین پست: یک شنبه 04 دی 1384, 03:10 صبح

برچسب های این تاپیک

قوانین ایجاد تاپیک در تالار

  • شما نمی توانید تاپیک جدید ایجاد کنید
  • شما نمی توانید به تاپیک ها پاسخ دهید
  • شما نمی توانید ضمیمه ارسال کنید
  • شما نمی توانید پاسخ هایتان را ویرایش کنید
  •