Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| // The following code is from http://www.academicpub.org/PaperInfo.aspx?PaperID=14496 . | |
| import java.math.BigInteger; | |
| import java.security.*; | |
| import java.security.spec.*; | |
| import javax.crypto.KeyAgreement; | |
| public class ECCKeyAgreement { | |
| public static void main(String[] args) throws Exception { | |
| KeyPairGenerator kpg; | |
| kpg = KeyPairGenerator.getInstance("EC","SunEC"); |