#JoaoVitor
1 messages · Page 1 of 1 (latest)
hi! can you talk more about what sort of encryption you're looking for or the use case/problem you're looking to solve?
it would be more for customer data not to be exposed.
which data and exposed how exactly? Everything submitted to our API by functions you call in the SDK will be using HTTPS and secured that way.
when I'm making a request on the front end, I already want to send the customer's credit card data encrypted for the back end to send to you Stripe
that's not how the Stripe integration works, you never send the card details from your own app to your own backend.
the customer enters their card details in the frontend native mobile components our SDK provides(like PaymentSheet) and the SDK submits those directly to our API over HTTPS directly from the frontend. The raw data never touches your code or servers(if it did you would need to be audited to be PCI compliant, so it doesn't work that way).
is there such a component in flutter?
if you're using the third-party https://pub.dev/packages/flutter_stripe package, that wrap our native iOS/Android SDKs and has the PaymentSheet yes