Home | History | Annotate | Download | only in server

Lines Matching refs:transaction

36     private final Set<Transaction> mReceivedTransactions = new HashSet<>();
39 public boolean verify(Transaction transaction, byte[] transactionSignature) {
41 if (mReceivedTransactions.contains(transaction)) {
42 // It verifies the equality of the transaction including the client nonce
46 mReceivedTransactions.add(transaction);
47 PublicKey publicKey = mPublicKeys.get(transaction.getUserId());
50 verificationFunction.update(transaction.toByteArray());
52 // Transaction is verified with the public key associated with the user
63 public boolean verify(Transaction transaction, String password) {