C# 클래스 iTextSharp.xmp.impl.Base64

A utility class to perform base64 encoding and decoding as specified in RFC-1521. See also RFC 1421. @version $Revision: 1.4 $
파일 보기 프로젝트 열기: nonorganic/dssnet

공개 메소드들

메소드 설명
Decode ( byte src ) : byte[]

Decode the given byte[].

Decode ( string src ) : string

Decode the given string.

Encode ( byte src ) : byte[]

Encode the given byte[].

Encode ( byte src, int lineFeed ) : byte[]

Encode the given byte[].

Encode ( string src ) : string

Encode the given string.

비공개 메소드들

메소드 설명
Base64 ( ) : System
GetBytes ( string str ) : byte[]
GetString ( byte bytes ) : string

메소드 상세

Decode() 공개 정적인 메소드

Decode the given byte[].
public static Decode ( byte src ) : byte[]
src byte /// the base64-encoded data.
리턴 byte[]

Decode() 공개 정적인 메소드

Decode the given string.
public static Decode ( string src ) : string
src string the base64-encoded string.
리턴 string

Encode() 공개 정적인 메소드

Encode the given byte[].
public static Encode ( byte src ) : byte[]
src byte the source string.
리턴 byte[]

Encode() 공개 정적인 메소드

Encode the given byte[].
public static Encode ( byte src, int lineFeed ) : byte[]
src byte the source string.
lineFeed int a linefeed is added after linefeed characters; /// must be dividable by four; 0 means no linefeeds
리턴 byte[]

Encode() 공개 정적인 메소드

Encode the given string.
public static Encode ( string src ) : string
src string the source string.
리턴 string