credit-card

RegEx to find credit card numbers with embedded spaces

喜欢而已 提交于 2021-02-20 00:43:46
问题 We currently have a content compliance in place where by we monitor anything that contains a credit card number with no spaces (e.g 5100080000000000 ) What we need is for a reg ex to pick up credit card numbers that are entered with spaces every 4 digits (eg: 5100 0800 0000 0000 ) We've been looking at alternate reg exs but have not yet found one that works for both scenarios mentioned above. The current reg ex we use is below ^((4\d{3})|(5[1-5]\d{2})|(6011)|(34\d{1})|(37\d{1}))-?\d{4}-?\d{4}

How do Integrate eWay Payment System in PHP

房东的猫 提交于 2021-02-11 13:48:25
问题 I have followed the document site https://eway.io/api-v3/ to integrate the Payment system into my PHP application. And I run the command composer require eway/eway-rapid-php from terminal in the application. After that I load autoload.php . Now I want to send customer into eWay payment site for choose payment method(paypal, CC) as well as paypal/CC information. So that customer can feel that they are paying by eWay payment gateway. I have the following code into my controller method ::

Card.io Does not scan non - Raised Digit Credit Cards

こ雲淡風輕ζ 提交于 2021-02-07 11:27:14
问题 I have a problem with scanning non-raised digit credit cards with card.io sdk. I haven't seen any explanation about this issue on the official site of card.io. Does this sdk work for only raised digit credit cards? 回答1: Jeff here from card.io. In short, yes, the sdk only works for raised digit credit cards. Scanning cards on a mobile device is hard, and the team chose to start by scanning the largest percentage of cards on the market, and do it well. There are plans to support more cards and

accept visa and masterCard payment in java application [closed]

笑着哭i 提交于 2020-08-26 13:55:07
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 5 years ago . Improve this question I am new to this topic, so I don't know what I need to accept payments using credit cards like visa and master card in my java application. Please also give me the code I should write in java to fulfill this task. 回答1: What you're looking for is a payment

What is the relationship between the EMV ODA, CA and issuer certificate during the transaction?

痞子三分冷 提交于 2020-05-28 07:55:07
问题 What is the relationship between the EMV ODA , CA and issuer certificate during the transaction? 回答1: Offline data authentication is the process to verify the cards authenticity. Terminals are loaded with CA Public key. SDA(Static Data Authentication) can assure you the card data has not been altered after the issuance. SDA card contains Signed Static Application Data and Issuer Public Key certificate. CA Public key in the terminal is used to verify the Issuer Public key certificate and

Paypal returns “The merchant does not accept payments of this type”

坚强是说给别人听的谎言 提交于 2020-02-29 04:19:05
问题 I integrated Paypal into my mobile APP and I use the REST API Calls. If I pay the ordeers using paypal account, It works succesfully, but if I use Direct Credit Card Payment (when the user doesn't have the paypal account), Paypal System return an error: "The merchant does not accept payments of this type" I don't found in my Paypal Dashboard where this payment type could be enabled. Could you please help me? Thanks Luca 回答1: Following are checklist you should verify, probably following is the

See keystore used by SSLFactory? Exception: “sun…certpath.SunCertPathBuilderException: unable to find valid certification path to requested target”

北慕城南 提交于 2020-02-04 05:49:07
问题 Authorize.net updated their production certificates, and now our SSL code is generating the following exception: Exception javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target According to this blog post from Authorize.net, we need to install new root certs on our server. We did this, but the exception persists. So now

iOS credit card autofill persists on drop down inputs

时光毁灭记忆、已成空白 提交于 2020-01-23 13:49:14
问题 I have come across a bug on a website I am working on with the credit card autofill iOS offers. I cannot offer a working example of this is as it requires a genuine SSL certificate in order for the autofill to appear on an iOS keyboard however I can actually get this to occur on Amazon's checkout too. In essence the issue is that after having been offered to autofill having focused on any credit card enabled input it looks like all drop down input keyboards will also offer to autofill your

Hosting a PCI compliant app on Azure

我只是一个虾纸丫 提交于 2020-01-14 07:34:09
问题 I want to host an application on Windows Azure that stores the credit card information of users who pay to buy subscriptions for a monthly fee. I'd just have to store the card data as securely as possible (encrypt, salt, update database password often, use HTTPS, and so on) I believe I need to be PCI compliant to be able to store this kind of information. My question is can Azure allow me to achieve this? What are my options? Can an application on Azure process credit card payments? 回答1: