Compare commits
1 Commits
v0.6.0
...
new-cid-do
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
373e25552c |
21
cid.go
21
cid.go
@@ -22,6 +22,7 @@ package cid
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding"
|
"encoding"
|
||||||
|
"encoding/binary"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
@@ -173,16 +174,24 @@ func NewCidV0(mhash mh.Multihash) Cid {
|
|||||||
// Panics if the multihash is invalid.
|
// Panics if the multihash is invalid.
|
||||||
func NewCidV1(codecType uint64, mhash mh.Multihash) Cid {
|
func NewCidV1(codecType uint64, mhash mh.Multihash) Cid {
|
||||||
hashlen := len(mhash)
|
hashlen := len(mhash)
|
||||||
// two 8 bytes (max) numbers plus hash
|
|
||||||
buf := make([]byte, 1+varint.UvarintSize(codecType)+hashlen)
|
// Two 8 bytes (max) numbers plus hash.
|
||||||
n := varint.PutUvarint(buf, 1)
|
// We use strings.Builder to only allocate once.
|
||||||
n += varint.PutUvarint(buf[n:], codecType)
|
var b strings.Builder
|
||||||
cn := copy(buf[n:], mhash)
|
b.Grow(1 + varint.UvarintSize(codecType) + hashlen)
|
||||||
|
|
||||||
|
b.WriteByte(1)
|
||||||
|
|
||||||
|
var buf [binary.MaxVarintLen64]byte
|
||||||
|
n := varint.PutUvarint(buf[:], codecType)
|
||||||
|
b.Write(buf[:n])
|
||||||
|
|
||||||
|
cn, _ := b.Write(mhash)
|
||||||
if cn != hashlen {
|
if cn != hashlen {
|
||||||
panic("copy hash length is inconsistent")
|
panic("copy hash length is inconsistent")
|
||||||
}
|
}
|
||||||
|
|
||||||
return Cid{string(buf[:n+hashlen])}
|
return Cid{b.String()}
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|||||||
Reference in New Issue
Block a user