I am working on an Wallet Application, and we need to implement advanced-OTP to comply with the regulators.
We decided to go with HOTP (https://www.rfc-editor.org/rfc/rfc6238) but it isn't enough because we have to tie generated OTP with each transfer transaction.
Do we have a standard way for this?
I'm thinking about doing the same as HOTP and adjust timestamp by mixing it with transaction_code (e.g timestamp + transaction_code).
Is it acceptable? Any solutions, opinions on this matter is much appreciated.
Thanks in advance.
Proper way to implement transactional HOTP?
15 Views Asked by Hieu Doan At
0
There are 0 best solutions below
Related Questions in TRANSACTIONS
- How to design the file operation interface involving status and transactions?
- Internal events cannot be consumed in spring boot. Only when using Kafka Consume
- How do you categorize a pending transaction immediately after making a purchase and have it save?
- Spring JPA + Hibernate + Rest services + long time transactions
- How to Identify Specific Transaction Anomalies in a Given Schedule?
- When does shared and exclusive locks are acquired and released in a MySql transactions?
- How to write a reusable DB transaction wrapper?
- "No data" after sending tx Jupiter Swap Python
- Perform multiple Identity actions in a transaction
- Running a program on different computers with different users that access a central database simultaneously - VB.NET XAMPP/MySQL
- Proper way to implement transactional HOTP?
- Transactional role in Java Spring Boot
- Is there a way of increasing MAX_INTEGER in web3.js
- Single transaction, multiple service calls to Entity Framework updating database
- Saving to Reactive Redis and Postgres in a single transaction
Related Questions in FINANCE
- Can't figure out to properly implement formula to get monthly payment for a mortgage into C#
- React component to display crypto price live data
- Is here a database for fetching a financial data for capital market?
- RSI from Trading View is different from my RSI calculation
- Proper way to implement transactional HOTP?
- Is there an Excel function to calculate the future value of constant interest rate, variable payments?
- Discrepancy between quantmod Results in R and Online Graphs with EURUSD load with yahoo
- How to configure Cumulative Dividend Reinvestment with an initial Value
- Rstudio monthly discount factor interpolation for data table
- Yield curve by liquidity premium hypothesis
- cs50 :( buy handles valid purchase expected to find "112.00" in page, but it wasn't found
- Goal Seek-Macro keeps crashing/running slow
- CRSP/Compustat Merged Database (CCM) in WRDS via Python didn't work
- How to decrease running time for a IRFunctionCurve.fitSvensson in Matlab?
- How to perform arithmetic operations from formula stored in another table in sql / pgsql?
Related Questions in ONE-TIME-PASSWORD
- OTP (token) should be automatically read from the message
- How to generate OTP Number with 6 digits
- How to generate an OTP and send to user in codeigniter 3
- Windows pre-Login one time password for admin account
- Is it possible to use 'ALG_HMAC_SHA1' method from 'Signature' class in javacard framework 2.2.1 version?
- How to reset password in web API using ASP.Net Identity
- How to override text of edit text when maxLength of edittext is 1
- SecurID-like web-service authentication
- Integrating Truecaller SDK with OTP in Android app
- Firebase SMS Verification
- Firebase Phone Authentication not sending OTP
- How to compare randomly generated OTP/Number in PHP with the user input
- sms_otp_auto_verify unable to auto detect the OTP
- OTP Owncloud label hide
- How to populate OTP from user's message box to application directly in iPhone?
Related Questions in GOOGLE-2FA
- Proper way to implement transactional HOTP?
- Trial number issue at TWELIO.com
- Enforce MFA for Google Cloud project
- 2FA Rest API in KeyClock
- Google Sign in 2FA verification redirecting to wrong place
- How to uplaod on pypi.test with 2fa?
- Problems with 2FA in php
- How to only require 2FA on certain pages with firebase
- Get Recovery Code GitHub for 2FA from Android Studio
- How to set-up google authenticator as a second factor authentication in Api Platform?
- Network device (Juniper) + FREERADIUS + 2FA
- Laravel - google authenticator 2FA verify successful but unable to redirect to home page
- how to implement google two factor authentication on xamarin form application
- Google 2FA screen stuck on iOS devices for a mobile app
- Generating and verifying 2FA OTP using Chilkat CkCrypt2
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?