Beispiel #1
0
 @Test
 public void testDefaultEncryptionMode() {
   assertThat(builder.getEncryptionMethod()).isEqualTo(HawkBuilder.EncryptionMethod.MEDIUM);
 }
Beispiel #2
0
 @Test
 public void testNoEncrpytionMode() {
   builder.setEncryptionMethod(HawkBuilder.EncryptionMethod.NO_ENCRYPTION).build();
   assertThat(builder.getEncryptionMethod()).isEqualTo(HawkBuilder.EncryptionMethod.NO_ENCRYPTION);
 }
Beispiel #3
0
 @Test
 public void testHighestEncryptionMethodWithPasword() {
   builder.setEncryptionMethod(HawkBuilder.EncryptionMethod.HIGHEST).setPassword("test");
   assertThat(builder.getEncryptionMethod()).isEqualTo(HawkBuilder.EncryptionMethod.HIGHEST);
 }