代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/121517/14754368
~pas crypt.~pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
function Decrypt( S: String; Key: Word): String;
impleme
www.eeworm.com/read/212912/15145155
~pas crypt.~pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
function Decrypt( S: String; Key: Word): String;
impleme
www.eeworm.com/read/212912/15145197
pas crypt.pas
unit crypt;
interface
USES
Classes;
const
C1 = 52845;
C2 = 22719;
function Encrypt( S: String; Key: Word): String;
function Decrypt( S: String; Key: Word): String;
impleme
www.eeworm.com/read/210560/15196547
cpp stdafx.cpp
// stdafx.cpp : source file that includes just the standard includes
// encrypt.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h
www.eeworm.com/read/209211/4982836
h lib.h
/* avoid name conflicts */
#define accept pm_accept
#define listen pm_listen
#define sleep ksleep
#define wakeup kwakeup
#define strtod fmtstrtod
/* conflicts on some os's */
#define encrypt libenc
www.eeworm.com/read/198657/5083735
txt startingexample-en.txt
CrypTool
This is a text file, shown in order to help you to make your first steps with CrypTool.
1) One thing you can do e.g. is to encrypt this file with the Caesar algorithm [via the menu "Cry
www.eeworm.com/read/198657/5083803
txt startingexample-en.txt
CrypTool
This is a text file, shown in order to help you to make your first steps with CrypTool.
1) One thing you can do e.g. is to encrypt this file with the Caesar algorithm [via the menu "Cry
www.eeworm.com/read/198657/5083868
txt startingexample-en.txt
CrypTool
This is a text file, shown in order to help you to make your first steps with CrypTool.
1) One thing you can do e.g. is to encrypt this file with the Caesar algorithm [via the menu "Cry
www.eeworm.com/read/185637/5237032
java createkey.java
package com.crypto.encrypt;
import java.security.SecureRandom;
import javax.crypto.KeyGenerator;
import java.security.NoSuchAlgorithmException;
import javax.crypto.SecretKey;
import java.io.*;