代码搜索:Genkey
找到约 126 项符合「Genkey」的源代码
代码结果 126
www.eeworm.com/read/318176/13484335
c genkey.c
/*
* Program to generate RSA keys suitable for use with an encryption
* exponent of 3, and which are also 'Blum Integers'.
*
* Note that an exponent of 3 must be used with extreme care!
www.eeworm.com/read/494289/6381650
cpp genkey.cpp
/*
* Program to generate RSA keys suitable for use with an encryption
* exponent of 3, and which are also 'Blum Integers'.
*
* Requires: big.cpp
*
* Copyright (c) 1988-1997 Shamus
www.eeworm.com/read/494289/6381784
c genkey.c
/*
* Program to generate RSA keys suitable for use with an encryption
* exponent of 3, and which are also 'Blum Integers'.
*
* Note that an exponent of 3 must be used with extreme care!
www.eeworm.com/read/156908/11753409
cpp genkey.cpp
/*
* Program to generate RSA keys suitable for use with an encryption
* exponent of 3, and which are also 'Blum Integers'.
*
* Requires: big.cpp
*
* Copyright (c) 1988-1997 Shamus
www.eeworm.com/read/156908/11753703
c genkey.c
/*
* Program to generate RSA keys suitable for use with an encryption
* exponent of 3, and which are also 'Blum Integers'.
*
* Note that an exponent of 3 must be used with extreme care!
www.eeworm.com/read/222244/14699717
sql genkey.sql
-- GENKEY.SQL sample script demonstrating xp_generatekey
--
-- Michael Coles, MCDBA
-- 7/2005
--
DECLARE @key VARCHAR(255)
EXEC master..xp_generatekey 128, @key OUTPUT
PRINT 'Your Key is: ' + @
www.eeworm.com/read/220903/14784285
cpp genkey.cpp
#include "StdAfx.h"
#include ".\genkey.h"
/**
* 散列构造器,有机器码
* 本类可根据 机器码,用户名,口令或只用用户名,口令散列出固定128位的序列,用于NewHash类的散列密钥
* 参数:
* pcstr 机器码
* username 用户名
* psw 用户口令
* len1 pcstr有效长度
*
www.eeworm.com/read/220903/14784291
h genkey.h
#pragma once
#ifndef INI_KEY_LEN
#define INI_KEY_LEN 1500
#endif
#ifndef GEN_KEY_LEN
#define GEN_KEY_LEN 128
#endif
#ifndef PN
#define PN 127
#endif
#ifndef FIN_KEY_LEN
#define FIN_KEY_LEN
www.eeworm.com/read/216820/14991390
java genkey.java
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import java.security.Key;
import java.security.SecureRandom;
import java.io.FileOutputStream;
import java.io.ObjectOutputStream;
p
www.eeworm.com/read/5581/47693