代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/109410/15557974
cpp enigma.cpp
// Enigma.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
char * Encrypt(char *Dest,char *mstext, char *CodeWord)
{
www.eeworm.com/read/109316/15559379
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/105063/15678439
~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/105062/15678487
~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/105062/15678495
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/130382/5959054
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by pgpwctx.rc
//
#define IDD_WORKING 101
#define IDI_ICON_SIG 102
#defi
www.eeworm.com/read/125279/6031582
c ike_alg_serpent.c
#include
#include
#include
#include
#include
#include "constants.h"
#include "defs.h"
#include "log.h"
#include "libserpent/serpent_cbc.h"
#
www.eeworm.com/read/160303/5573054
c ike_alg_serpent.c
#include
#include
#include
#include
#include
#include "constants.h"
#include "defs.h"
#include "log.h"
#include "libserpent/serpent_cbc.h"
#
www.eeworm.com/read/287029/8731429
asm rc6.asm
;; RC6.ASM -- Implementation of RC6 in MASM
;; (C)opyLeft 2005 by drizz
;; P2 533MHz
;; -----------------------------------------
;; RC6Init: 1463 cycles
;; RC6Encrypt: 24
www.eeworm.com/read/386582/8737571
sh genkey.sh
#!/bin/bash
if [ $# -ne 2 ]
then
echo "Usage: $0 alias \"pass phrase\""
exit -1
fi
# Generate a 2048 bit RSA key with public exponent 3.
# Encrypt private key with provided password.
openssl genrs