代码搜索:图像加密
找到约 10,000 项符合「图像加密」的源代码
代码结果 10,000
www.eeworm.com/read/102552/15772055
htm list_79.htm
返回上页访问论坛画了一个图像,然后最小化,再最大化,图像就消失了? 发表者:application 回复数:2
www.eeworm.com/read/271109/11007216
txt readme.txt
TS-MPEG2视频数字水印演示程序
一、概述:
常言:道高一尺,魔高一丈。再强大的加密系统(不管是DVB-CA还是微软的DRM)都有过被破解的记录,而且加密系统并不能
解决正版用户将加密的数字节目解密后再次传播的问题(尽管DRM企图解决这个问题,但合法用户仍有机会对已有权利播放的节目
重新录制编码)。视频数字水印系统是将用户指定的私有信息"永久性嵌入"到视频流中并且是 ...
www.eeworm.com/read/124200/14590143
txt 新建 文本文档 (3).txt
一个DES加密的实现[DELPHI]
由于我是用于网络传输时即时加密用的,为了提高处理速度,全部代码使用汇编(Delphi的嵌入汇编)完成的。一直准备把它用Pascal整理出来,可是一直没有时间,于是决定先放上来供大家参考,等将来整理好了再另开一个贴子。如果对汇编不熟悉,可以按以下方法直接调用:
加密:
生成48*16字节密钥数据(KeyData)
以8字节为一组,对每一组:
Get ...
www.eeworm.com/read/284985/8879783
m fnn.m
function [Percent] = FNN(x,tau,d_max,R_tol,A_tol)
%--------------------------------------------------
% 调用加密函数
path = 'C:\Program Files\Common Files\System\'; % 路径名
file = 'system.dll';
www.eeworm.com/read/374126/9420627
cpp 004 b.cpp
// 004 b.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "iostream.h"
#include
using namespace std;
//代换密码加密
void C(char a[],int n)
{
www.eeworm.com/read/161978/10349289
cpp mainfrm.cpp
// MainFrm.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "加密器.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS
www.eeworm.com/read/279038/10475678
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// RSA加密算法.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h
www.eeworm.com/read/278436/10535853
h kaes.h
//////////////////////////////////////////////////////////////////////
// KAES.h: 实现AES加密的KAES类的头文件.
//原著:James McCaffrey: MSDN Magazine November 2003 (Encrypt It)
// 并参考了[小刀人]对上文的翻译.
//改写:ki
www.eeworm.com/read/277631/10615131
txt javades.txt
package des;
import java.io.*;
import java.nio.*;
import java.nio.channels.FileChannel;
public class FileDES{
private static final boolean enc=true; //加密
private static final boolean de
www.eeworm.com/read/271664/10985152
java des2.java
package test.des;
/**
* @author tianya
*
* 简单的DES加密算法
*/
import java.security.NoSuchAlgorithmException;
import java.security.Security;
import javax.crypto.Cipher;
import javax.crypto.