Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a20f8f601 |
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user