博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PayPal加密证书.pem的生成
阅读量:6586 次
发布时间:2019-06-24

本文共 1076 字,大约阅读时间需要 3 分钟。

 

How do I create a public certificate for use with PayPal Encrypted Website Payments?

 

 

Before you can use Encrypted Website Payments, PayPal requires that you upload your public certificate to verify the authenticity of the encrypted code. PayPal recommends using OpenSSL to create your public certificate.
OpenSSL is freely available at  . If you're using Windows, download the Win32 version of OpenSSL. Once you've downloaded OpenSSL and added it to your PATH, the certificate generation is a two-step process:
  1. Create your private key. The OpenSSL command for doing this is openssl genrsa -out my-private-key.pem 1024 (replace my-private-key.pem with whatever you want to name your private key).
  2. Create your public certificate. The OpenSSL command for doing this is openssl req -new -key my-private-key.pem -x509 -days 365 -out my-public-certificate.pem (replace my-public-certificate.pem with whatever you want to name your public certificate).
You're now ready to acquire your Certificate ID by uploading your public certificate to the PayPal site. To learn how to do so, see 

转载地址:http://dhhno.baihongyu.com/

你可能感兴趣的文章
使用Python快速获取公众号文章定制电子书(二)
查看>>
weak和assign的区别
查看>>
iOS下JS与OC互相调用(七)--Cordova 基础
查看>>
两列自适应布局方案整理
查看>>
测试本地node包
查看>>
Three.js 关于立方体贴图产生边缘锯齿问题
查看>>
自己动手,在macOS High Sierra中编译一个可debug的JDK
查看>>
用掘金-Markdown 编辑器写文章
查看>>
一文搞懂前端对象的深拷贝与浅拷贝
查看>>
Like Sunday, Like Rain - JavaScript运算符优先级
查看>>
Nacos v0.7.0:对接CMDB,实现基于标签的服务发现能力
查看>>
最大熵模型
查看>>
【开发问题记录①】关于滑动CollectionView时ContentSize变化的问题
查看>>
纯前端控件集 WijmoJS 2018V2发布,提供可视化设计器,在React、Vue和Angular中的更易用...
查看>>
JavaScript 中call apply 那点简单事
查看>>
k8s使用glusterfs实现动态持久化存储
查看>>
java中GC的基本概念
查看>>
building xxx gradle project info的解决办法
查看>>
Netty+SpringBoot+FastDFS+Html5实现聊天App详解(四)
查看>>
【Leetcode】98. 验证二叉搜索树
查看>>