代码搜索:Cipher
找到约 3,792 项符合「Cipher」的源代码
代码结果 3,792
www.eeworm.com/read/286166/8785456
cpp idea.cpp
// idea.cpp - modified by Wei Dai from:
// Copyright 1992 by Colin Plumb. Distributed with permission.
/* idea.c - C source code for IDEA block cipher.
* IDEA (International Data Encr
www.eeworm.com/read/283128/9041607
cpp idea.cpp
// idea.cpp - modified by Wei Dai from:
// Copyright 1992 by Colin Plumb. Distributed with permission.
/* idea.c - C source code for IDEA block cipher.
* IDEA (International Data Encr
www.eeworm.com/read/176389/9500361
java desgo.java
package des;
import java.security.*;
import javax.crypto.*;
public class desgo {
public static void main(String[] args) {
desgo my = new desgo();
my.run();
}
public void run() {
www.eeworm.com/read/175643/9538609
cpp idea.cpp
// idea.cpp - modified by Wei Dai from:
// Copyright 1992 by Colin Plumb. Distributed with permission.
/* idea.c - C source code for IDEA block cipher.
* IDEA (International Data Encr
www.eeworm.com/read/175163/9556876
java pbetool.java
package jct;
import javax.crypto.*;
import javax.crypto.spec.*;
import java.security.Key;
import java.security.KeyFactory;
import java.security.spec.EncodedKeySpec;
import java.security.Security;
im
www.eeworm.com/read/371177/9563560
cpp idea.cpp
// idea.cpp - modified by Wei Dai from:
// Copyright 1992 by Colin Plumb. Distributed with permission.
/* idea.c - C source code for IDEA block cipher.
* IDEA (International Data Encr
www.eeworm.com/read/362791/9980793
cpp idea.cpp
// idea.cpp - modified by Wei Dai from:
// Copyright 1992 by Colin Plumb. Distributed with permission.
/* idea.c - C source code for IDEA block cipher.
* IDEA (International Data Encr
www.eeworm.com/read/357758/10201583
c descert.c
#include
main()
{
char key[8],plain[8],cipher[8],answer[8];
int i;
int test;
int fail;
char ks[16][8];
desinit(0);
for(test=0;!feof(stdin);test++){
get8(key);
printf(" K: "); p
www.eeworm.com/read/355392/10270510
cpp idea.cpp
// idea.cpp - modified by Wei Dai from:
// Copyright 1992 by Colin Plumb. Distributed with permission.
/* idea.c - C source code for IDEA block cipher.
* IDEA (International Data Encr
www.eeworm.com/read/355115/10291900
h methods.h
#pragma once
enum CIPHER
{
ENCRYPT_METHOD = 0,
DECRYPT_METHOD,
ENCRYPT_EXE
};