代码搜索:Encode
找到约 8,258 项符合「Encode」的源代码
代码结果 8,258
www.eeworm.com/read/130382/5959084
cpp encoding.cpp
/*
* Functions to encode and decode using BASE64 or Quoted-Printable
* Also a transfer-encoding header line parser
*
* Filename: encoding.cpp
*
* Last Edited: Friday, August 30, 1996
www.eeworm.com/read/129661/5971028
java base64outputstream.java
package com.heaton.bot;
import java.io.*;
/**
* This filter is used to 64-bit encode the specified string.
* This allows a string to be displayed with only ASCII characters.
* It is also used to
www.eeworm.com/read/124567/6045500
java base64outputstream.java
package com.heaton.bot;
import java.io.*;
/**
* This filter is used to 64-bit encode the specified string.
* This allows a string to be displayed with only ASCII characters.
* It is also used to
www.eeworm.com/read/106677/6191561
java cp850.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp850 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191562
java cp860.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp860 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191563
java cp852.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp852 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/106677/6191564
java cp866.java
package cryptix.pgp.charset;
import cryptix.pgp.*;
/**
* @author Jill Baker
*/
public abstract class Cp866 extends SimpleCharSet
{
public final static byte[] encode( byte[] buffer )
{
www.eeworm.com/read/149916/6337049
bas cod_base64.bas
Attribute VB_Name = "Cod_Base64"
Option Explicit
Private Const Base64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
Public Sub Base64Array_Encode(ByteArray() As Byte)