This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://blogs.oracle.com/janp/entry/how_the_scp_protocol_works | |
package main | |
import ( | |
"code.google.com/p/go.crypto/ssh" | |
"crypto" | |
"crypto/rsa" | |
"crypto/x509" | |
"encoding/pem" | |
"fmt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<head> | |
<title> TEST </title> | |
<style type="text/css"> | |
.container { border: 1px solid blue;height: 200px;padding: 5px;width: 100%; } | |
.container p { margin:0;padding:0; } | |
.holder { border:1px dashed black; margin:0 2px 0 2px; padding: 0 3px 0 3px;} | |
</style> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
* 简单的异步调用封装,传入参数仿jQuery,其中url为必填项 | |
* @example | |
* 示例参数如下:<pre> | |
* var ajaxOption = { | |
* type : "" , // GET/POST | |
* url : "" , | |
* data : "" , // 传入参数 | |
* beforeSend : function() {}, | |
* complete : function() {}, |
NewerOlder