bottin/goldap/attribute_value.go
Quentin 563fc272a3
Vendor goldap, fix ASN.1 BER integer and length encoding
- Add tests for goldap to prevent regressions
 - Disable reconnection for our functional tests
2021-09-16 13:09:26 +02:00

25 lines
513 B
Go

package message
import "fmt"
//
// AttributeValue ::= OCTET STRING
func readAttributeValue(bytes *Bytes) (ret AttributeValue, err error) {
octetstring, err := readOCTETSTRING(bytes)
if err != nil {
err = LdapError{fmt.Sprintf("readAttributeValue:\n%s", err.Error())}
return
}
ret = AttributeValue(octetstring)
return
}
func (value AttributeValue) write(bytes *Bytes) int {
return OCTETSTRING(value).write(bytes)
}
func (value AttributeValue) size() int {
return OCTETSTRING(value).size()
}