代码搜索:Encrypt
找到约 3,742 项符合「Encrypt」的源代码
代码结果 3,742
www.eeworm.com/read/209211/4984308
c auth.c
#include "vnc.h"
#include
#include
char *serveraddr;
/*
* Encrypt n bytes using the password
* as key, padded with zeros to 8 bytes.
*/
enum
{
VerLen = 12
};
static char ver
www.eeworm.com/read/185637/5237031
java unencryptdata.java
package com.crypto.encrypt;
import java.security.SecureRandom;
import javax.crypto.spec.DESKeySpec;
import javax.crypto.SecretKeyFactory;
import javax.crypto.SecretKey;
import javax.crypto.Ciph
www.eeworm.com/read/185637/5237033
java encryptdata.java
package com.crypto.encrypt;
import java.security.SecureRandom;
import java.io.*;
import javax.crypto.spec.DESKeySpec;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
impor
www.eeworm.com/read/183001/5258867
sql rijndael.sql
--
-- AES / Rijndael-128 cipher
--
-- some standard Rijndael testvalues
SELECT encode(encrypt(
decode('00112233445566778899aabbccddeeff', 'hex'),
decode('000102030405060708090a0b0c0d0e0f', 'hex'),
'a
www.eeworm.com/read/363556/2916065
svn-base base64.java.svn-base
package org.jivesoftware.spark.util;
import org.jivesoftware.spark.util.log.Log;
/**
* Used to encrypt and decrypt bytes -- string using Base64 encoding and decoding.
*/
public class Base64
www.eeworm.com/read/363556/2916078
java base64.java
package org.jivesoftware.spark.util;
import org.jivesoftware.spark.util.log.Log;
/**
* Used to encrypt and decrypt bytes -- string using Base64 encoding and decoding.
*/
public class Base64