1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
package jwk
import "fmt"
func (ops *KeyOperationList) Get() KeyOperationList {
if ops == nil {
return nil
}
return *ops
}
func (ops *KeyOperationList) Accept(v interface{}) error {
switch x := v.(type) {
case string:
return ops.Accept([]string{x})
case []interface{}:
l := make([]string, len(x))
for i, e := range x {
if es, ok := e.(string); ok {
l[i] = es
} else {
return fmt.Errorf(`invalid list element type: expected string, got %T`, v)
}
}
return ops.Accept(l)
case []string:
list := make(KeyOperationList, len(x))
for i, e := range x {
switch e := KeyOperation(e); e {
case KeyOpSign, KeyOpVerify, KeyOpEncrypt, KeyOpDecrypt, KeyOpWrapKey, KeyOpUnwrapKey, KeyOpDeriveKey, KeyOpDeriveBits:
list[i] = e
default:
return fmt.Errorf(`invalid keyoperation %v`, e)
}
}
*ops = list
return nil
case []KeyOperation:
list := make(KeyOperationList, len(x))
for i, e := range x {
switch e {
case KeyOpSign, KeyOpVerify, KeyOpEncrypt, KeyOpDecrypt, KeyOpWrapKey, KeyOpUnwrapKey, KeyOpDeriveKey, KeyOpDeriveBits:
list[i] = e
default:
return fmt.Errorf(`invalid keyoperation %v`, e)
}
}
*ops = list
return nil
case KeyOperationList:
*ops = x
return nil
default:
return fmt.Errorf(`invalid value %T`, v)
}
}
|