Comment IntegerBytes
This commit is contained in:
@ -31,6 +31,9 @@ func Integer(number []byte) (value int) {
|
||||
return
|
||||
}
|
||||
|
||||
//
|
||||
// Take an int representation and return a big endian integer.
|
||||
//
|
||||
func IntegerBytes(value int) (number []byte) {
|
||||
number = make([]byte, INTEGER_SIZE)
|
||||
binary.BigEndian.PutUint64(number, uint64(value))
|
||||
|
@ -65,8 +65,6 @@ type KeysAndCert struct {
|
||||
Certificate
|
||||
}
|
||||
|
||||
//[]byte
|
||||
|
||||
//
|
||||
// Return the PublicKey for this KeysAndCert, reading from the Key Certificate if it is present to
|
||||
// determine correct lengths.
|
||||
|
Reference in New Issue
Block a user