Example #1
0
def encryption_procedure(sec_image_name, cov_image_name, key):
    # Encryption Procedure
    sec_image_name = input_path + sec_image_name
    cov_image_name = input_path + cov_image_name
    RC4.rc4_encryption(sec_image_name, key, output_path, encrypted_image_name)
    shuffle.shuffle_unshuffle(output_path + "/" + encrypted_image_name)
    steganography.encode(output_path + "/" + encrypted_image_name, output_path,
                         cov_image_name)