| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // Copyright (C) 2014 The Protocol Authors.
- package protocol
- import (
- "bytes"
- "crypto/sha256"
- "encoding/base32"
- "encoding/binary"
- "errors"
- "fmt"
- "regexp"
- "strings"
- "github.com/calmh/luhn"
- )
- type DeviceID [32]byte
- var LocalDeviceID = DeviceID{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}
- // NewDeviceID generates a new device ID from the raw bytes of a certificate
- func NewDeviceID(rawCert []byte) DeviceID {
- var n DeviceID
- hf := sha256.New()
- hf.Write(rawCert)
- hf.Sum(n[:0])
- return n
- }
- func DeviceIDFromString(s string) (DeviceID, error) {
- var n DeviceID
- err := n.UnmarshalText([]byte(s))
- return n, err
- }
- func DeviceIDFromBytes(bs []byte) DeviceID {
- var n DeviceID
- if len(bs) != len(n) {
- panic("incorrect length of byte slice representing device ID")
- }
- copy(n[:], bs)
- return n
- }
- // String returns the canonical string representation of the device ID
- func (n DeviceID) String() string {
- id := base32.StdEncoding.EncodeToString(n[:])
- id = strings.Trim(id, "=")
- id, err := luhnify(id)
- if err != nil {
- // Should never happen
- panic(err)
- }
- id = chunkify(id)
- return id
- }
- func (n DeviceID) GoString() string {
- return n.String()
- }
- func (n DeviceID) Compare(other DeviceID) int {
- return bytes.Compare(n[:], other[:])
- }
- func (n DeviceID) Equals(other DeviceID) bool {
- return bytes.Compare(n[:], other[:]) == 0
- }
- // Short returns an integer representing bits 0-63 of the device ID.
- func (n DeviceID) Short() uint64 {
- return binary.BigEndian.Uint64(n[:])
- }
- func (n *DeviceID) MarshalText() ([]byte, error) {
- return []byte(n.String()), nil
- }
- func (n *DeviceID) UnmarshalText(bs []byte) error {
- id := string(bs)
- id = strings.Trim(id, "=")
- id = strings.ToUpper(id)
- id = untypeoify(id)
- id = unchunkify(id)
- var err error
- switch len(id) {
- case 56:
- // New style, with check digits
- id, err = unluhnify(id)
- if err != nil {
- return err
- }
- fallthrough
- case 52:
- // Old style, no check digits
- dec, err := base32.StdEncoding.DecodeString(id + "====")
- if err != nil {
- return err
- }
- copy(n[:], dec)
- return nil
- default:
- return errors.New("device ID invalid: incorrect length")
- }
- }
- func luhnify(s string) (string, error) {
- if len(s) != 52 {
- panic("unsupported string length")
- }
- res := make([]string, 0, 4)
- for i := 0; i < 4; i++ {
- p := s[i*13 : (i+1)*13]
- l, err := luhn.Base32.Generate(p)
- if err != nil {
- return "", err
- }
- res = append(res, fmt.Sprintf("%s%c", p, l))
- }
- return res[0] + res[1] + res[2] + res[3], nil
- }
- func unluhnify(s string) (string, error) {
- if len(s) != 56 {
- return "", fmt.Errorf("unsupported string length %d", len(s))
- }
- res := make([]string, 0, 4)
- for i := 0; i < 4; i++ {
- p := s[i*14 : (i+1)*14-1]
- l, err := luhn.Base32.Generate(p)
- if err != nil {
- return "", err
- }
- if g := fmt.Sprintf("%s%c", p, l); g != s[i*14:(i+1)*14] {
- return "", errors.New("check digit incorrect")
- }
- res = append(res, p)
- }
- return res[0] + res[1] + res[2] + res[3], nil
- }
- func chunkify(s string) string {
- s = regexp.MustCompile("(.{7})").ReplaceAllString(s, "$1-")
- s = strings.Trim(s, "-")
- return s
- }
- func unchunkify(s string) string {
- s = strings.Replace(s, "-", "", -1)
- s = strings.Replace(s, " ", "", -1)
- return s
- }
- func untypeoify(s string) string {
- s = strings.Replace(s, "0", "O", -1)
- s = strings.Replace(s, "1", "I", -1)
- s = strings.Replace(s, "8", "B", -1)
- return s
- }
|