Lines Matching refs:Transaction
20 import com.example.android.asymmetricfingerprintdialog.server.Transaction;
221 Transaction transaction = new Transaction("user", 1, new SecureRandom().nextLong());
222 if (!mStoreBackend.verify(transaction, mPassword.getText().toString())) {
288 // Include a client nonce in the transaction so that the nonce is also signed by the private
291 Transaction transaction = new Transaction("user", 1, new SecureRandom().nextLong());
293 signature.update(transaction.toByteArray());
295 if (mStoreBackend.verify(transaction, sigBytes)) {