代码搜索:Crypt
找到约 4,865 项符合「Crypt」的源代码
代码结果 4,865
www.eeworm.com/read/125688/6024601
c crypt_client.c
/*
* Copyright (c) 1996
* Bill Paul . All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided t
www.eeworm.com/read/125688/6024625
c des_crypt.c
/*
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
* unrestricted use provided that this legend is included on all tape
* media and as a part of the software program in whole o
www.eeworm.com/read/125688/6025601
h des_crypt.h
/*
* @(#)des_crypt.h 2.1 88/08/11 4.0 RPCSRC; from 1.4 88/02/08 (C) 1986 SMI
*
* des_crypt.h, des library routine interface
* Copyright (C) 1986, Sun Microsystems, Inc.
*/
/*
* Sun RPC is a prod
www.eeworm.com/read/125279/6032031
pl crypt586.pl
#!/usr/local/bin/perl
#
# The inner loop instruction sequence and the IP/FP modifications are from
# Svend Olaf Mikkelsen
# I've added the stuff needed for crypt() but I've not
www.eeworm.com/read/120487/6071996
out crypt-blowfish.out
--
-- crypt() and gen_salt(): bcrypt
--
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
crypt
----------------------------------------------
www.eeworm.com/read/120487/6071997
out crypt-xdes.out
--
-- crypt() and gen_salt(): extended des
--
SELECT crypt('', '_J9..j2zz');
crypt
----------------------
_J9..j2zzR/nIRDK3pPc
(1 row)
SELECT crypt('foox', '_J9..j2zz');
cry
www.eeworm.com/read/120487/6072005
out crypt-des.out
--
-- crypt() and gen_salt(): crypt-des
--
SELECT crypt('', 'NB');
crypt
---------------
NBPx/38Y48kHg
(1 row)
SELECT crypt('foox', 'NB');
crypt
---------------
NB53EGGqrrb5E
(1
www.eeworm.com/read/120487/6072009
sql crypt-des.sql
--
-- crypt() and gen_salt(): crypt-des
--
SELECT crypt('', 'NB');
SELECT crypt('foox', 'NB');
CREATE TABLE ctest (data text, res text, salt text);
INSERT INTO ctest VALUES ('password', '', '');
U
www.eeworm.com/read/120487/6072012
sql crypt-blowfish.sql
--
-- crypt() and gen_salt(): bcrypt
--
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
SELECT crypt('foox', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
CREATE TABLE ctest (data text, res text, salt text)