Compare commits

...
Author SHA1 Message Date
Andrea Franz 5a20f8f601 remove default and implementation from interface 2019-11-20 15:38:04 +01:00
3 changed files with 9 additions and 3 deletions
@@ -34,4 +34,8 @@ public class NFCCardChannel implements CardChannel {
public boolean isConnected() {
return this.isoDep.isConnected();
}
public int pairingPasswordPBKDF2IterationCount() {
return 50000;
}
}
@@ -47,4 +47,8 @@ public class PCSCCardChannel implements CardChannel {
public boolean isConnected() {
return true;
}
public int pairingPasswordPBKDF2IterationCount() {
return 50000;
}
}
@@ -29,7 +29,5 @@ public interface CardChannel {
*
* @return the iteration count
*/
default int pairingPasswordPBKDF2IterationCount() {
return 50000;
}
int pairingPasswordPBKDF2IterationCount();
}