Skip to content

Instantly share code, notes, and snippets.

View afterhill's full-sized avatar

AfterHill afterhill

View GitHub Profile
@afterhill
afterhill / tmux.conf
Last active August 29, 2015 14:20 — forked from spicycode/tmux.conf
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
==== 密钥的格式
((("addresses, bitcoin","key formats", id="ix_ch04-asciidoc14", range="startofrange")))((("keys","formats of", id="ix_ch04-asciidoc15", range="startofrange")))公钥和私钥的都可以有多种编码格式,一个密钥被不同的格式编码后,虽然结果看起来可能不同,但是密钥本身的数字并没有改变,这些不同的编码格式主要是用来方便人们无误地使用和识别密钥。
[[priv_formats]]
===== 私钥的格式
((("private keys","format")))((("Bitcoin Explorer","modifying private key formats with")))私钥一共有25个数字,可以被很多不同的格式编码。<<table_4-2>>展示了三种常见的私钥编码格式。
[[table_4-2]]
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] Cucumber-JVM
[INFO] Cucumber-JVM: Core
[INFO] Cucumber-JVM: JUnit
[INFO] Cucumber-JVM: Java
[INFO] Cucumber-JVM: PicoContainer
[INFO] Cucumber-JVM: Clojure
Apache Maven 3.0.4 (r1232337; 2012-01-17 16:44:56+0800)
Maven home: D:\workspace\apache-maven-3.0.4
Java version: 1.7.0_09, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.7.0_09\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 2003", version: "5.2", arch: "amd64", family: "windows"
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from D:\workspace\apache-maven-3.0.4\conf\settings.xml
[DEBUG] Reading user settings from C:\Documents and Settings\Administrator\.m2\settings.xml
[DEBUG] Using local repository at D:\maven_repo
@afterhill
afterhill / BaseDao.java
Created April 24, 2013 14:44
annotation depency injection
package daoannotation;
public interface BaseDao {
}
package exercise;
@Exportable("address")
public class AddressForTest {
@Persistent
private String country = null;
@Persistent
private String province = null;