| 类 | 说明 |
|---|---|
| BASE64Decoder |
32 * This class implements a BASE64 Character decoder as specified in RFC1521.
33 *
34 * This RFC is part of the MIME specification which is published by the
35 * Internet Engineering Task Force (IETF).
|
| BASE64Encoder |
密码器类
|
| BouncyCastleProvider |
To add the provider at runtime use:
import java.security.Security;
import org.security.provider.BouncyCastleProvider;
Security.addProvider(new BouncyCastleProvider());
The provider can also be configured as part of your environment via
static registration by adding an entry to the java.security properties
file (found in $JAVA_HOME/jre/lib/security/java.security, where
$JAVA_HOME is the location of your JDK/JRE distribution).
|
| CharacterDecoder |
37 * This class defines the decoding half of character encoders. 38 * A
character decoder is an algorithim for transforming 8 bit 39 * binary data
that has been encoded into text by a character 40 * encoder, back into
original binary form. 41 * 42 * The character encoders, in general, have been
structured 43 * around a central theme that binary data can be encoded into
44 * text that has the form: 45 * 46 *
47 * [Buffer Prefix]
48 * [Line Prefix][encoded data atoms][Line Suffix]
49 * [Buffer Suffix]
50 *
51 * 52 * Of course in the simplest encoding schemes, the buffer has no 53 *
distinct prefix of suffix, however all have some fixed relationship 54 *
between the text in an 'atom' and the binary data itself. 55 * 56 * In the
CharacterEncoder and CharacterDecoder classes, one complete 57 * chunk of
data is referred to as a buffer.
|
| Hex |
Hex encoder and decoder.
|
| SecurityCoder |
加密基类
|
Copyright © 2017. All rights reserved.