github.com/hoffie/larasync@v0.0.0-20151025221940-0384d2bddcef/api/client/const.go (about) 1 package client 2 3 import ( 4 common "github.com/hoffie/larasync/api/common" 5 ) 6 7 const ( 8 // PrivateKeySize denotes how many bytes a private key needs (binary encoded) 9 PrivateKeySize = common.PrivateKeySize 10 // PublicKeySize denotes how many bytes a pubkey needs (binary encoded) 11 PublicKeySize = common.PublicKeySize 12 // SignatureSize denotes how many bytes a sig needs (binary encoded) 13 SignatureSize = common.SignatureSize 14 )