| | |
| | | /** |
| | | * The cipher transformation that should be used when performing RC4 |
| | | * encryption/decription. |
| | | * |
| | | * TODO: https://opends.dev.java.net/issues/show_bug.cgi?id=2471 |
| | | */ |
| | | public static final String CIPHER_TRANSFORMATION_RC4 = "RC4/NONE/NoPadding"; |
| | | |
| | |
| | | /** |
| | | * The key size (in bits) that should be used for the encryption key when |
| | | * using the AES cipher. |
| | | * TODO: https://opends.dev.java.net/issues/show_bug.cgi?id=2475 |
| | | */ |
| | | public static final int KEY_SIZE_AES = 128; |
| | | |
| | |
| | | /** |
| | | * The key size (in bits) that should be used for the encryption key when |
| | | * using the Blowfish cipher. |
| | | * TODO: https://opends.dev.java.net/issues/show_bug.cgi?id=2475 |
| | | */ |
| | | public static final int KEY_SIZE_BLOWFISH = 128; |
| | | |
| | |
| | | /** |
| | | * The key size (in bits) that should be used for the encryption key when |
| | | * using the RC4 cipher. |
| | | * TODO: https://opends.dev.java.net/issues/show_bug.cgi?id=2475 |
| | | */ |
| | | public static final int KEY_SIZE_RC4 = 128; |
| | | |