--start with ... connect by prior --case1 select * from org o --excute order=>first:start with connect by prior, then where condition where o.flag = ' ...
分类:
数据库 时间:
2020-05-01 10:30:14
阅读次数:
86
在使用支付宝支付功能开发的阶段, 可以在沙箱环境下进行开发, 开发完成之后, 到线上再进行相关参数的替换即可 一. 登陆支付宝开放平台(https://open.alipay.com/platform/home.htm) 进入沙盒环境: 二. 设置加密方式 RSA 或者RSA2(推荐) 1. 生成R ...
分类:
其他好文 时间:
2020-04-29 20:19:40
阅读次数:
192
把 ssh-keygen所在的路径配置全局变量 然后 ssh-keygen所在的路径配置 : D:\Program Files\Git\usr\bin重启 cmd 在bash 命令窗口输入 ssh-keygen -t rsa -C “yourEmail@example.com” ...
分类:
其他好文 时间:
2020-04-28 23:20:05
阅读次数:
56
[root@jenkins ~]# ssh-keygen -t rsa ##在命令行输入此命令,直接按三次回车 Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa ...
分类:
系统相关 时间:
2020-04-27 22:52:37
阅读次数:
91
1.终端生成ssh key: ssh-keygen -t rsa -C "your@qq.com" 预设密码 使用 ssh-agent保存密码: 输入:eval `ssh-agent ` 复制出现的三行类似于: SSH_AUTH_SOCK=/tmp/ssh-bq1jxmZsvSEF/agent.20 ...
分类:
其他好文 时间:
2020-04-27 17:26:53
阅读次数:
60
145.二叉数的后序遍历 给定一个二叉树,返回它的 后序 遍历。 示例: 输入: [1,null,2,3] 1 \\ 2 / 3 输出: [3,2,1] 进阶: 递归算法很简单,你可以通过迭代算法完成吗? 后序遍历的概念 后序遍历就是先遍历左子树,然后遍历右子树,然后访问根节点。 递归实现 先左子树 ...
分类:
其他好文 时间:
2020-04-27 17:04:50
阅读次数:
55
``` /** * 102. Binary Tree Level Order Traversal * 1. Time:O(n) Space:O(n) * 2. Time:O(n) Space:O(n) */ // 1. Time:O(n) Space:O(n) class Solution { pu... ...
分类:
其他好文 时间:
2020-04-27 13:04:46
阅读次数:
47
1.打开本地git bash,使用如下命令生成ssh公钥和私钥对 ssh-keygen -t rsa -C 'xxx@xxx.com' 然后一路回车(-C 参数是你的邮箱地址)2.然后会出现:Enter file in which to save the key (/Users/yzq/.ssh/i ...
分类:
其他好文 时间:
2020-04-26 11:13:29
阅读次数:
66
/// <summary> /// RSA ECC /// 可逆非对称加密 /// 非对称加密算法的优点是密钥管理很方便,缺点是速度慢。 /// </summary> using System.Security.Cryptography; public class RsaEncrypt { /// ...
分类:
其他好文 时间:
2020-04-25 15:27:16
阅读次数:
115
问题: iCode要求一个SSH公钥(public key)仅能给一个用户使用 当多人共用一台机器时,容易造成公钥重复的问题; 因为SSH公钥默认保存地址为:~/.ssh/id_rsa.pub 张三生成一个,李四不更改名字继续生成的话容易覆盖之前张三生成的key 解法: 第一步:每个用户生成一对自己 ...
分类:
系统相关 时间:
2020-04-23 21:23:39
阅读次数:
94