Property | Type | Description | |
---|---|---|---|
EnforceMarks | bool | ||
LineLength | int | ||
PrefixMark | string | ||
SuffixMark | string |
Method | Description | |
---|---|---|
Decode ( string data ) : byte[] |
simple Decode with default values
|
|
DecodeData ( string s ) : byte[] |
Decodes an ASCII85 encoded string into the original binary data
|
|
Encode ( byte data ) : string |
simple Encode with default values
|
|
EncodeData ( byte ba ) : string |
Encodes binary data into a plaintext ASCII85 format string
|
Method | Description | |
---|---|---|
AppendChar ( StringBuilder sb, char c ) : void | ||
AppendString ( StringBuilder sb, string s ) : void | ||
DecodeBlock ( ) : void | ||
DecodeBlock ( int bytes ) : void | ||
EncodeBlock ( StringBuilder sb ) : void | ||
EncodeBlock ( int count, StringBuilder sb ) : void |
public static Decode ( string data ) : byte[] | ||
data | string | |
return | byte[] |
public DecodeData ( string s ) : byte[] | ||
s | string | ASCII85 encoded string |
return | byte[] |
public EncodeData ( byte ba ) : string | ||
ba | byte | binary data to encode |
return | string |