forked from privacybydesign/irmago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequests.go
672 lines (571 loc) · 20.4 KB
/
requests.go
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
package irma
import (
"fmt"
"io/ioutil"
"strconv"
"time"
"github.com/bwesterb/go-atum"
"github.com/dgrijalva/jwt-go"
"github.com/go-errors/errors"
"github.com/privacybydesign/gabi/big"
"github.com/privacybydesign/irmago/internal/fs"
)
// BaseRequest contains the context and nonce for an IRMA session.
type BaseRequest struct {
Context *big.Int `json:"context,omitempty"`
Nonce *big.Int `json:"nonce,omitempty"`
Type Action `json:"type"`
Candidates [][]*AttributeIdentifier `json:"-"`
Choice *DisclosureChoice `json:"-"`
Ids *IrmaIdentifierSet `json:"-"`
Version *ProtocolVersion `json:"protocolVersion,omitempty"`
}
func (sr *BaseRequest) SetCandidates(candidates [][]*AttributeIdentifier) {
sr.Candidates = candidates
}
// DisclosureChoice returns the attributes to be disclosed in this session.
func (sr *BaseRequest) DisclosureChoice() *DisclosureChoice {
return sr.Choice
}
// SetDisclosureChoice sets the attributes to be disclosed in this session.
func (sr *BaseRequest) SetDisclosureChoice(choice *DisclosureChoice) {
sr.Choice = choice
}
// ...
func (sr *BaseRequest) SetVersion(v *ProtocolVersion) {
sr.Version = v
}
// ...
func (sr *BaseRequest) GetVersion() *ProtocolVersion {
return sr.Version
}
// A DisclosureRequest is a request to disclose certain attributes.
type DisclosureRequest struct {
BaseRequest
Content AttributeDisjunctionList `json:"content"`
}
// A SignatureRequest is a a request to sign a message with certain attributes.
type SignatureRequest struct {
DisclosureRequest
Message string `json:"message"`
// Session state
Timestamp *atum.Timestamp `json:"-"`
}
// An IssuanceRequest is a request to issue certain credentials,
// optionally also asking for certain attributes to be simultaneously disclosed.
type IssuanceRequest struct {
BaseRequest
Credentials []*CredentialRequest `json:"credentials"`
Disclose AttributeDisjunctionList `json:"disclose"`
// Derived data
CredentialInfoList CredentialInfoList `json:",omitempty"`
RemovalCredentialInfoList CredentialInfoList `json:",omitempty"`
}
// A CredentialRequest contains the attributes and metadata of a credential
// that will be issued in an IssuanceRequest.
type CredentialRequest struct {
Validity *Timestamp `json:"validity,omitempty"`
KeyCounter int `json:"keyCounter,omitempty"`
CredentialTypeID CredentialTypeIdentifier `json:"credential"`
Attributes map[string]string `json:"attributes"`
}
// ServerJwt contains standard JWT fields.
type ServerJwt struct {
Type string `json:"sub"`
ServerName string `json:"iss"`
IssuedAt Timestamp `json:"iat"`
}
// RequestorBaseRequest contains fields present in all RequestorRequest types
// with which the requestor configures an IRMA session.
type RequestorBaseRequest struct {
ResultJwtValidity int `json:"validity,omitempty"` // Validity of session result JWT in seconds
ClientTimeout int `json:"timeout,omitempty"` // Wait this many seconds for the IRMA app to connect before the session times out
CallbackUrl string `json:"callbackUrl,omitempty"` // URL to post session result to
}
// RequestorRequest is the message with which requestors start an IRMA session. It contains a
// SessionRequest instance for the irmaclient along with extra fields in a RequestorBaseRequest.
type RequestorRequest interface {
Validator
SessionRequest() SessionRequest
Base() RequestorBaseRequest
}
// A ServiceProviderRequest contains a disclosure request.
type ServiceProviderRequest struct {
RequestorBaseRequest
Request *DisclosureRequest `json:"request"`
}
// A SignatureRequestorRequest contains a signing request.
type SignatureRequestorRequest struct {
RequestorBaseRequest
Request *SignatureRequest `json:"request"`
}
// An IdentityProviderRequest contains an issuance request.
type IdentityProviderRequest struct {
RequestorBaseRequest
Request *IssuanceRequest `json:"request"`
}
// ServiceProviderJwt is a requestor JWT for a disclosure session.
type ServiceProviderJwt struct {
ServerJwt
Request *ServiceProviderRequest `json:"sprequest"`
}
// SignatureRequestorJwt is a requestor JWT for a signing session.
type SignatureRequestorJwt struct {
ServerJwt
Request *SignatureRequestorRequest `json:"absrequest"`
}
// IdentityProviderJwt is a requestor JWT for issuance session.
type IdentityProviderJwt struct {
ServerJwt
Request *IdentityProviderRequest `json:"iprequest"`
}
func (r *ServiceProviderRequest) Validate() error {
if r.Request == nil {
return errors.New("Not a ServiceProviderRequest")
}
return r.Request.Validate()
}
func (r *SignatureRequestorRequest) Validate() error {
if r.Request == nil {
return errors.New("Not a SignatureRequestorRequest")
}
return r.Request.Validate()
}
func (r *IdentityProviderRequest) Validate() error {
if r.Request == nil {
return errors.New("Not a IdentityProviderRequest")
}
return r.Request.Validate()
}
func (r *ServiceProviderRequest) SessionRequest() SessionRequest {
return r.Request
}
func (r *SignatureRequestorRequest) SessionRequest() SessionRequest {
return r.Request
}
func (r *IdentityProviderRequest) SessionRequest() SessionRequest {
return r.Request
}
func (r *ServiceProviderRequest) Base() RequestorBaseRequest {
return r.RequestorBaseRequest
}
func (r *SignatureRequestorRequest) Base() RequestorBaseRequest {
return r.RequestorBaseRequest
}
func (r *IdentityProviderRequest) Base() RequestorBaseRequest {
return r.RequestorBaseRequest
}
// SessionRequest instances contain all information the irmaclient needs to perform an IRMA session.
type SessionRequest interface {
Validator
GetNonce() *big.Int
SetNonce(*big.Int)
GetContext() *big.Int
SetContext(*big.Int)
GetVersion() *ProtocolVersion
SetVersion(*ProtocolVersion)
ToDisclose() AttributeDisjunctionList
DisclosureChoice() *DisclosureChoice
SetDisclosureChoice(choice *DisclosureChoice)
SetCandidates(candidates [][]*AttributeIdentifier)
Identifiers() *IrmaIdentifierSet
Action() Action
}
// Timestamp is a time.Time that marshals to Unix timestamps.
type Timestamp time.Time
func (cr *CredentialRequest) Info(conf *Configuration, metadataVersion byte) (*CredentialInfo, error) {
list, err := cr.AttributeList(conf, metadataVersion)
if err != nil {
return nil, err
}
return NewCredentialInfo(list.Ints, conf), nil
}
// Validate checks that this credential request is consistent with the specified Configuration:
// the credential type is known, all required attributes are present and no unknown attributes
// are given.
func (cr *CredentialRequest) Validate(conf *Configuration) error {
credtype := conf.CredentialTypes[cr.CredentialTypeID]
if credtype == nil {
return errors.New("Credential request of unknown credential type")
}
// Check that there are no attributes in the credential request that aren't
// in the credential descriptor.
for crName := range cr.Attributes {
found := false
for _, ad := range credtype.AttributeTypes {
if ad.ID == crName {
found = true
break
}
}
if !found {
return errors.New("Credential request contaiins unknown attribute")
}
}
for _, attrtype := range credtype.AttributeTypes {
if _, present := cr.Attributes[attrtype.ID]; !present && attrtype.Optional != "true" {
return errors.New("Required attribute not present in credential request")
}
}
return nil
}
// AttributeList returns the list of attributes from this credential request.
func (cr *CredentialRequest) AttributeList(conf *Configuration, metadataVersion byte) (*AttributeList, error) {
if err := cr.Validate(conf); err != nil {
return nil, err
}
// Compute metadata attribute
meta := NewMetadataAttribute(metadataVersion)
meta.setKeyCounter(cr.KeyCounter)
meta.setCredentialTypeIdentifier(cr.CredentialTypeID.String())
meta.setSigningDate()
if err := meta.setExpiryDate(cr.Validity); err != nil {
return nil, err
}
// Compute other attributes
credtype := conf.CredentialTypes[cr.CredentialTypeID]
attrs := make([]*big.Int, len(credtype.AttributeTypes)+1)
attrs[0] = meta.Int
for i, attrtype := range credtype.AttributeTypes {
attrs[i+1] = new(big.Int)
if str, present := cr.Attributes[attrtype.ID]; present {
// Set attribute to str << 1 + 1
attrs[i+1].SetBytes([]byte(str))
if meta.Version() >= 0x03 {
attrs[i+1].Lsh(attrs[i+1], 1) // attr <<= 1
attrs[i+1].Add(attrs[i+1], big.NewInt(1)) // attr += 1
}
}
}
return NewAttributeListFromInts(attrs, conf), nil
}
func (ir *IssuanceRequest) Identifiers() *IrmaIdentifierSet {
if ir.Ids == nil {
ir.Ids = &IrmaIdentifierSet{
SchemeManagers: map[SchemeManagerIdentifier]struct{}{},
Issuers: map[IssuerIdentifier]struct{}{},
CredentialTypes: map[CredentialTypeIdentifier]struct{}{},
PublicKeys: map[IssuerIdentifier][]int{},
}
for _, credreq := range ir.Credentials {
issuer := credreq.CredentialTypeID.IssuerIdentifier()
ir.Ids.SchemeManagers[issuer.SchemeManagerIdentifier()] = struct{}{}
ir.Ids.Issuers[issuer] = struct{}{}
ir.Ids.CredentialTypes[credreq.CredentialTypeID] = struct{}{}
if ir.Ids.PublicKeys[issuer] == nil {
ir.Ids.PublicKeys[issuer] = []int{}
}
ir.Ids.PublicKeys[issuer] = append(ir.Ids.PublicKeys[issuer], credreq.KeyCounter)
}
for _, disjunction := range ir.Disclose {
for _, attr := range disjunction.Attributes {
var cti CredentialTypeIdentifier
if !attr.IsCredential() {
cti = attr.CredentialTypeIdentifier()
} else {
cti = NewCredentialTypeIdentifier(attr.String())
}
ir.Ids.SchemeManagers[cti.IssuerIdentifier().SchemeManagerIdentifier()] = struct{}{}
ir.Ids.Issuers[cti.IssuerIdentifier()] = struct{}{}
ir.Ids.CredentialTypes[cti] = struct{}{}
}
}
}
return ir.Ids
}
// ToDisclose returns the attributes that must be disclosed in this issuance session.
func (ir *IssuanceRequest) ToDisclose() AttributeDisjunctionList {
if ir.Disclose == nil {
return AttributeDisjunctionList{}
}
return ir.Disclose
}
func (ir *IssuanceRequest) GetCredentialInfoList(conf *Configuration, version *ProtocolVersion) (CredentialInfoList, error) {
if ir.CredentialInfoList == nil {
for _, credreq := range ir.Credentials {
info, err := credreq.Info(conf, GetMetadataVersion(version))
if err != nil {
return nil, err
}
ir.CredentialInfoList = append(ir.CredentialInfoList, info)
}
}
return ir.CredentialInfoList, nil
}
// GetContext returns the context of this session.
func (ir *IssuanceRequest) GetContext() *big.Int { return ir.Context }
// SetContext sets the context of this session.
func (ir *IssuanceRequest) SetContext(context *big.Int) { ir.Context = context }
// GetNonce returns the nonce of this session.
func (ir *IssuanceRequest) GetNonce() *big.Int { return ir.Nonce }
// SetNonce sets the nonce of this session.
func (ir *IssuanceRequest) SetNonce(nonce *big.Int) { ir.Nonce = nonce }
func (ir *IssuanceRequest) Action() Action { return ActionIssuing }
func (ir *IssuanceRequest) Validate() error {
if ir.Type != ActionIssuing {
return errors.New("Not an issuance request")
}
if len(ir.Credentials) == 0 {
return errors.New("Empty issuance request")
}
return nil
}
func (dr *DisclosureRequest) Identifiers() *IrmaIdentifierSet {
if dr.Ids == nil {
dr.Ids = &IrmaIdentifierSet{
SchemeManagers: map[SchemeManagerIdentifier]struct{}{},
Issuers: map[IssuerIdentifier]struct{}{},
CredentialTypes: map[CredentialTypeIdentifier]struct{}{},
PublicKeys: map[IssuerIdentifier][]int{},
}
for _, disjunction := range dr.Content {
for _, attr := range disjunction.Attributes {
dr.Ids.SchemeManagers[attr.CredentialTypeIdentifier().IssuerIdentifier().SchemeManagerIdentifier()] = struct{}{}
dr.Ids.Issuers[attr.CredentialTypeIdentifier().IssuerIdentifier()] = struct{}{}
dr.Ids.CredentialTypes[attr.CredentialTypeIdentifier()] = struct{}{}
}
}
}
return dr.Ids
}
// ToDisclose returns the attributes to be disclosed in this session.
func (dr *DisclosureRequest) ToDisclose() AttributeDisjunctionList { return dr.Content }
// GetContext returns the context of this session.
func (dr *DisclosureRequest) GetContext() *big.Int { return dr.Context }
// SetContext sets the context of this session.
func (dr *DisclosureRequest) SetContext(context *big.Int) { dr.Context = context }
// GetNonce returns the nonce of this session.
func (dr *DisclosureRequest) GetNonce() *big.Int { return dr.Nonce }
// SetNonce sets the nonce of this session.
func (dr *DisclosureRequest) SetNonce(nonce *big.Int) { dr.Nonce = nonce }
func (dr *DisclosureRequest) Action() Action { return ActionDisclosing }
func (dr *DisclosureRequest) Validate() error {
if dr.Type != ActionDisclosing {
return errors.New("Not a disclosure request")
}
if len(dr.Content) == 0 {
return errors.New("Disclosure request had no attributes")
}
for _, disjunction := range dr.Content {
if len(disjunction.Attributes) == 0 {
return errors.New("Disclosure request had an empty disjunction")
}
}
return nil
}
// GetNonce returns the nonce of this signature session
// (with the message already hashed into it).
func (sr *SignatureRequest) GetNonce() *big.Int {
return ASN1ConvertSignatureNonce(sr.Message, sr.Nonce, sr.Timestamp)
}
func (sr *SignatureRequest) SignatureFromMessage(message interface{}) (*SignedMessage, error) {
signature, ok := message.(*Disclosure)
if !ok {
return nil, errors.Errorf("Type assertion failed")
}
return &SignedMessage{
Signature: signature.Proofs,
Indices: signature.Indices,
Nonce: sr.Nonce,
Context: sr.Context,
Message: sr.Message,
Timestamp: sr.Timestamp,
}, nil
}
func (sr *SignatureRequest) Action() Action { return ActionSigning }
func (sr *SignatureRequest) Validate() error {
if sr.Type != ActionSigning {
return errors.New("Not a signature request")
}
if sr.Message == "" {
return errors.New("Signature request had empty message")
}
if len(sr.Content) == 0 {
return errors.New("Disclosure request had no attributes")
}
for _, disjunction := range sr.Content {
if len(disjunction.Attributes) == 0 {
return errors.New("Disclosure request had an empty disjunction")
}
}
return nil
}
// Check if Timestamp is before other Timestamp. Used for checking expiry of attributes
func (t Timestamp) Before(u Timestamp) bool {
return time.Time(t).Before(time.Time(u))
}
func (t Timestamp) After(u Timestamp) bool {
return time.Time(t).After(time.Time(u))
}
// MarshalJSON marshals a timestamp.
func (t *Timestamp) MarshalJSON() ([]byte, error) {
return []byte(t.String()), nil
}
// UnmarshalJSON unmarshals a timestamp.
func (t *Timestamp) UnmarshalJSON(b []byte) error {
ts, err := strconv.Atoi(string(b))
if err != nil {
return err
}
*t = Timestamp(time.Unix(int64(ts), 0))
return nil
}
// Timestamp implements Stringer.
func (t *Timestamp) String() string {
return fmt.Sprint(time.Time(*t).Unix())
}
func readTimestamp(path string) (*Timestamp, bool, error) {
exists, err := fs.PathExists(path)
if err != nil {
return nil, false, err
}
if !exists {
return nil, false, nil
}
bts, err := ioutil.ReadFile(path)
if err != nil {
return nil, true, errors.New("Could not read scheme manager timestamp")
}
ts, err := parseTimestamp(bts)
return ts, true, err
}
func parseTimestamp(bts []byte) (*Timestamp, error) {
// Remove final character \n if present
if bts[len(bts)-1] == '\n' {
bts = bts[:len(bts)-1]
}
// convert from byte slice to string; parse as int
str, err := strconv.ParseInt(string(bts), 10, 64)
if err != nil {
return nil, err
}
ts := Timestamp(time.Unix(str, 0))
return &ts, nil
}
// NewServiceProviderJwt returns a new ServiceProviderJwt.
func NewServiceProviderJwt(servername string, dr *DisclosureRequest) *ServiceProviderJwt {
return &ServiceProviderJwt{
ServerJwt: ServerJwt{
ServerName: servername,
IssuedAt: Timestamp(time.Now()),
Type: "verification_request",
},
Request: &ServiceProviderRequest{
RequestorBaseRequest: RequestorBaseRequest{ResultJwtValidity: 120},
Request: dr,
},
}
}
// NewSignatureRequestorJwt returns a new SignatureRequestorJwt.
func NewSignatureRequestorJwt(servername string, sr *SignatureRequest) *SignatureRequestorJwt {
return &SignatureRequestorJwt{
ServerJwt: ServerJwt{
ServerName: servername,
IssuedAt: Timestamp(time.Now()),
Type: "signature_request",
},
Request: &SignatureRequestorRequest{
RequestorBaseRequest: RequestorBaseRequest{ResultJwtValidity: 120},
Request: sr,
},
}
}
// NewIdentityProviderJwt returns a new IdentityProviderJwt.
func NewIdentityProviderJwt(servername string, ir *IssuanceRequest) *IdentityProviderJwt {
return &IdentityProviderJwt{
ServerJwt: ServerJwt{
ServerName: servername,
IssuedAt: Timestamp(time.Now()),
Type: "issue_request",
},
Request: &IdentityProviderRequest{
RequestorBaseRequest: RequestorBaseRequest{ResultJwtValidity: 120},
Request: ir,
},
}
}
// A RequestorJwt contains an IRMA session object.
type RequestorJwt interface {
Action() Action
RequestorRequest() RequestorRequest
SessionRequest() SessionRequest
Requestor() string
Valid() error
Sign(jwt.SigningMethod, interface{}) (string, error)
}
func (jwt *ServerJwt) Requestor() string { return jwt.ServerName }
// SessionRequest returns an IRMA session object.
func (claims *ServiceProviderJwt) SessionRequest() SessionRequest { return claims.Request.Request }
// SessionRequest returns an IRMA session object.
func (claims *SignatureRequestorJwt) SessionRequest() SessionRequest { return claims.Request.Request }
// SessionRequest returns an IRMA session object.
func (claims *IdentityProviderJwt) SessionRequest() SessionRequest { return claims.Request.Request }
func (claims *ServiceProviderJwt) Sign(method jwt.SigningMethod, key interface{}) (string, error) {
return jwt.NewWithClaims(method, claims).SignedString(key)
}
func (claims *SignatureRequestorJwt) Sign(method jwt.SigningMethod, key interface{}) (string, error) {
return jwt.NewWithClaims(method, claims).SignedString(key)
}
func (claims *IdentityProviderJwt) Sign(method jwt.SigningMethod, key interface{}) (string, error) {
return jwt.NewWithClaims(method, claims).SignedString(key)
}
func (claims *ServiceProviderJwt) RequestorRequest() RequestorRequest { return claims.Request }
func (claims *SignatureRequestorJwt) RequestorRequest() RequestorRequest { return claims.Request }
func (claims *IdentityProviderJwt) RequestorRequest() RequestorRequest { return claims.Request }
func (claims *ServiceProviderJwt) Valid() error {
if claims.Type != "verification_request" {
return errors.New("Verification jwt has invalid subject")
}
if time.Time(claims.IssuedAt).After(time.Now()) {
return errors.New("Verification jwt not yet valid")
}
return nil
}
func (claims *SignatureRequestorJwt) Valid() error {
if claims.Type != "signature_request" {
return errors.New("Signature jwt has invalid subject")
}
if time.Time(claims.IssuedAt).After(time.Now()) {
return errors.New("Signature jwt not yet valid")
}
return nil
}
func (claims *IdentityProviderJwt) Valid() error {
if claims.Type != "issue_request" {
return errors.New("Issuance jwt has invalid subject")
}
if time.Time(claims.IssuedAt).After(time.Now()) {
return errors.New("Issuance jwt not yet valid")
}
return nil
}
func (claims *ServiceProviderJwt) Action() Action { return ActionDisclosing }
func (claims *SignatureRequestorJwt) Action() Action { return ActionSigning }
func (claims *IdentityProviderJwt) Action() Action { return ActionIssuing }
func SignSessionRequest(request SessionRequest, alg jwt.SigningMethod, key interface{}, name string) (string, error) {
var jwtcontents RequestorJwt
switch r := request.(type) {
case *IssuanceRequest:
jwtcontents = NewIdentityProviderJwt(name, r)
case *DisclosureRequest:
jwtcontents = NewServiceProviderJwt(name, r)
case *SignatureRequest:
jwtcontents = NewSignatureRequestorJwt(name, r)
}
return jwtcontents.Sign(alg, key)
}
func SignRequestorRequest(request RequestorRequest, alg jwt.SigningMethod, key interface{}, name string) (string, error) {
var jwtcontents RequestorJwt
switch r := request.(type) {
case *IdentityProviderRequest:
jwtcontents = NewIdentityProviderJwt(name, nil)
jwtcontents.(*IdentityProviderJwt).Request = r
case *ServiceProviderRequest:
jwtcontents = NewServiceProviderJwt(name, nil)
jwtcontents.(*ServiceProviderJwt).Request = r
case *SignatureRequestorRequest:
jwtcontents = NewSignatureRequestorJwt(name, nil)
jwtcontents.(*SignatureRequestorJwt).Request = r
}
return jwtcontents.Sign(alg, key)
}