Denmaseno 8 年 前
コミット
ec31b70fb9
1 ファイル変更1 行追加3 行削除
  1. 1 3
      signer.go

+ 1 - 3
signer.go

@@ -6,8 +6,6 @@ import (
 	"crypto/rsa"
 	"fmt"
 	"hash"
-
-	"code.senomas.com/go/util"
 )
 
 // Signer struct
@@ -32,7 +30,7 @@ func (signer *Signer) Write(p []byte) (n int, err error) {
 
 // WriteUint64 func
 func (signer *Signer) WriteUint64(v uint64) {
-	signer.h.Write(util.Uint64ToBytes(v))
+	signer.h.Write(Uint64ToBytes(v))
 }
 
 // Sign func