Home
last modified time | relevance | path

Searched refs:verificationFunction (Results 1 – 1 of 1) sorted by relevance

/development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
DStoreBackendImpl.java48 Signature verificationFunction = Signature.getInstance("SHA256withECDSA"); in verify() local
49 verificationFunction.initVerify(publicKey); in verify()
50 verificationFunction.update(transaction.toByteArray()); in verify()
51 if (verificationFunction.verify(transactionSignature)) { in verify()