代码搜索:Encode

找到约 8,258 项符合「Encode」的源代码

代码结果 8,258
www.eeworm.com/read/420525/2068364

java cerp_crypt.java

package com.huiton.pub.tools; public class cerp_crypt{ // used to encode the input string private static final int CRY_KEY = 15; // used to limit the length of the final encoded_pass
www.eeworm.com/read/391269/2520789

h base64.h

/* base64.h -- Encode binary data using printable characters. Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. Written by Simon Josefsson. This program is free software; you can
www.eeworm.com/read/391269/2520817

c base64.c

/* base64.c -- Encode binary data using printable characters. Copyright (C) 1999, 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistrib
www.eeworm.com/read/391125/2522648

svn-base md5encrypt.java.svn-base

package com.szhelper.lotteryWeb.util; import java.security.*; import java.security.spec.*; public class Md5Encrypt { public final static String encode(String s) { char hexDigits[] = {
www.eeworm.com/read/391125/2522658

java md5encrypt.java

package com.szhelper.lotteryWeb.util; import java.security.*; import java.security.spec.*; public class Md5Encrypt { public final static String encode(String s) { char hexDigits[] = {
www.eeworm.com/read/386991/2564716

bas module1.bas

Attribute VB_Name = "Module1" Private Function Base64_Encode(strSource) As String 'base6加密算法 Const BASE64_TABLE As String = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
www.eeworm.com/read/371427/2779918

java cerp_crypt.java

package com.huiton.pub.tools; public class cerp_crypt{ // used to encode the input string private static final int CRY_KEY = 15; // used to limit the length of the final encoded_pass
www.eeworm.com/read/358128/3001273

pm open.pm

package open; use warnings; our $VERSION = '1.06'; require 5.008001; # for PerlIO::get_layers() my $locale_encoding; sub _get_encname { return ($1, Encode::resolve_alias($1)) if $_[0] =~ /^:?e
www.eeworm.com/read/156023/5615305

java cerp_crypt.java

package com.huiton.pub.tools; public class cerp_crypt{ // used to encode the input string private static final int CRY_KEY = 15; // used to limit the length of the final encoded_pass
www.eeworm.com/read/471947/6884404

java base64.java

public class Base64 { /** * returns an array of base64-encoded characters to represent the * passed data array. * * @param data the array of bytes to encode * @return base64-coded character array.