1 16 17 package de.schlichtherle.crypto.io.raes; 18 19 31 public interface Type0RaesParameters extends RaesParameters { 32 33 42 char[] getCreatePasswd() throws RaesKeyException; 43 44 45 56 char[] getOpenPasswd() throws RaesKeyException; 57 58 62 void invalidOpenPasswd(); 63 64 65 int KEY_STRENGTH_128 = 0; 66 67 68 int KEY_STRENGTH_192 = 1; 69 70 71 int KEY_STRENGTH_256 = 2; 72 73 80 int getKeyStrength(); 81 82 86 void setKeyStrength(int keyStrength); 87 } 88 | Popular Tags |