<?php
$priKey = file_get_contents('./id_rsa');
$res = openssl_get_privatekey($priKey);
$orderString = 'some string';
openssl_sign($orderString, $sign, $res);
//$sign为引用
openssl_free_key($res);
$sign = base64_encode($sign);
echo $sign;
| Benchmark Run: Sun Dec 30 2012 21:29:46 - 21:57:44 | |
| 1 CPU in system; running 1 parallel copy of tests | |
| Dhrystone 2 using register variables 8184515.9 lps (10.0 s, 7 samples) | |
| Double-Precision Whetstone 1833.6 MWIPS (9.8 s, 7 samples) | |
| Execl Throughput 1137.1 lps (30.0 s, 2 samples) | |
| File Copy 1024 bufsize 2000 maxblocks 170016.0 KBps (30.0 s, 2 samples) | |
| File Copy 256 bufsize 500 maxblocks 47165.0 KBps (30.0 s, 2 samples) | |
| File Copy 4096 bufsize 8000 maxblocks 402211.7 KBps (30.0 s, 2 samples) | |
| Pipe Throughput 284207.8 lps (10.0 s, 7 samples) |
| Benchmark Run: Sun Dec 30 2012 21:30:19 - 21:58:35 | |
| unknown CPUs in system; running 1 parallel copy of tests | |
| Dhrystone 2 using register variables 28050996.0 lps (10.0 s, 7 samples) | |
| Double-Precision Whetstone 4032.4 MWIPS (9.8 s, 7 samples) | |
| Execl Throughput 602.3 lps (29.9 s, 2 samples) | |
| File Copy 1024 bufsize 2000 maxblocks 600186.9 KBps (30.0 s, 2 samples) | |
| File Copy 256 bufsize 500 maxblocks 167574.2 KBps (30.0 s, 2 samples) | |
| File Copy 4096 bufsize 8000 maxblocks 1390130.7 KBps (30.0 s, 2 samples) | |
| Pipe Throughput 984698.6 lps (10.0 s, 7 samples) |
| Benchmark Run: Sun Dec 30 2012 21:57:45 - 22:26:22 | |
| 2 CPUs in system; running 2 parallel copies of tests | |
| Dhrystone 2 using register variables 26176109.2 lps (10.0 s, 7 samples) | |
| Double-Precision Whetstone 5340.4 MWIPS (9.9 s, 7 samples) | |
| Execl Throughput 7423.6 lps (29.7 s, 2 samples) | |
| File Copy 1024 bufsize 2000 maxblocks 124316.5 KBps (30.0 s, 2 samples) | |
| File Copy 256 bufsize 500 maxblocks 32652.9 KBps (30.0 s, 2 samples) | |
| File Copy 4096 bufsize 8000 maxblocks 275769.1 KBps (30.0 s, 2 samples) | |
| Pipe Throughput 2025220.5 lps (10.0 s, 7 samples) |
| import requests | |
| import re | |
| def fetch_jd_price(id): | |
| s = requests.Session() | |
| buy_url = 'http://gate.360buy.com/InitCart.aspx?pid='+str(id)+'&pcount=1&ptype=1' | |
| status_url = 'http://cart.360buy.com/cart/miniCartServiceNew.action?'+\ | |
| 'callback=jsonp&_=1358748376993&method=GetCart' | |
| s.get(buy_url) | |
| r = s.get(status_url) |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>KeepAlive</key> | |
| <true/> | |
| <key>OnDemand</key> | |
| <false/> | |
| <key>Label</key> | |
| <string>com.me.shadowsocks.startup</string> |
| import math | |
| import decimal | |
| def convert_to_code(num): | |
| """ | |
| 将数字转换为代码 | |
| """ | |
| def get_num(num, out=''): | |
| num = decimal.Decimal(num) | |
| codes = "abcdefghjkmnpqrstuvwxyz23456789ABCDEFGHJKMNPQRSTUVWXYZ" |
| <?php | |
| /** | |
| * 将数字转为短网址代码 | |
| * | |
| * @param int $number 数字 | |
| * @return string 短网址代码 | |
| */ | |
| function generate_code($number) { | |
| $out = ""; | |
| $codes = "abcdefghjkmnpqrstuvwxyz23456789ABCDEFGHJKMNPQRSTUVWXYZ"; |
| request = require 'request' | |
| form = | |
| from: 'shiguanglu <sys@shiguanglu.com>' | |
| to: 'testuser <ice.shiny@gmail.com>' | |
| subject: 'this is a test mail' | |
| text: 'test mail body' | |
| auth = | |
| user: 'api' | |
| password: 'YOUR API KEY FROM MAILGUN' | |
| nodemailer = require "nodemailer" | |
| transportOptions = | |
| service: "QQ" | |
| auth: | |
| user: "example@qq.com" | |
| pass: "password" | |
| mailOptions = | |
| from: "example@qq.com", | |
| to: "xxx@qq.com", |