I am not able to generate RSA key pair inside VSS through macros. I am in need of script to gerate key inside and compute Public CA and do RSA computation inside. Please help in this regard.
How to Generate RSA Keys in VSS verifone and compute public /CA?
512 Views Asked by amitesh At
1
There are 1 best solutions below
Related Questions in VERIFONE
- Using a second signing card with the same sponsor cert
- Integrating POS application with VeriFone terminal
- Can a VeriFone terminal application communicate via Ethernet, but also store local data?
- Which do Pos Devices support Api for .net?
- How to build desktop application that work with Verifone or Ingenico EMV Device
- Verifone Vx670 displaying with upper padding in pos LCD screen
- how to use of unicode fonts in Verifone VX675
- Sending data via Ethernet port (verifone vx520)
- Building a hello world project for a Verifone Terminal using Sourcery CodeBench for Verifone DTK
- EMV TLV length restriction limitation to overcome
- Memory available calls to VeriFone library
- Verifone VX 675 GUI development
- How to Generate RSA Keys in VSS verifone and compute public /CA?
- Issuer Scripts on Verifone Vx PIN pads
- how to read from smart card reader in verifone vx520?
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?
As far as I know, it is not possible to generate a RSA keypair inside VSS (v4.0).
You might want to try generating a keypair using the embedded openssl and then store it into the key slot (beware that there are probably some constraints on some key slots (modulus length,exponent length) -- check your documentation).
Beware that the
RSACOMPoperation does only a raw RSA computation (modular exponentiation) and you will have to handle the padding stuff yourself (and correctly).A much simpler alternative is to generate the keypair outside (HSM?) and inject it securely to the terminal (I do not understand your use case -- but some certificate for this keypair could be injected as well)
Good luck!