forked from privacybydesign/irmago
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irma_signature.go
72 lines (63 loc) · 2.1 KB
/
irma_signature.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
package irma
import (
"crypto/sha256"
"encoding/asn1"
"log"
gobig "math/big"
"github.com/bwesterb/go-atum"
"github.com/privacybydesign/gabi"
"github.com/privacybydesign/gabi/big"
)
const LDContextSignedMessage = "https://irma.app/ld/signature/v2"
// SignedMessage is a message signed with an attribute-based signature
// The 'realnonce' will be calculated as: SigRequest.GetNonce() = ASN1(nonce, SHA256(message), timestampSignature)
type SignedMessage struct {
LDContext string `json:"@context"`
Signature gabi.ProofList `json:"signature"`
Indices DisclosedAttributeIndices `json:"indices"`
Nonce *big.Int `json:"nonce"`
Context *big.Int `json:"context"`
Message string `json:"message"`
Timestamp *atum.Timestamp `json:"timestamp"`
}
func (sm *SignedMessage) Version() int {
if sm.LDContext == "" {
return 1
}
return 2
}
func (sm *SignedMessage) GetNonce() *big.Int {
return ASN1ConvertSignatureNonce(sm.Message, sm.Nonce, sm.Timestamp)
}
func (sm *SignedMessage) MatchesNonceAndContext(request *SignatureRequest) bool {
return sm.Context.Cmp(request.GetContext()) == 0 &&
sm.GetNonce().Cmp(request.GetNonce(sm.Timestamp)) == 0
}
func (sm *SignedMessage) Disclosure() *Disclosure {
return &Disclosure{
Proofs: sm.Signature,
Indices: sm.Indices,
}
}
// ASN1ConvertSignatureNonce computes the nonce that is used in the creation of the attribute-based signature:
//
// nonce = SHA256(serverNonce, SHA256(message), timestampSignature)
//
// where serverNonce is the nonce sent by the signature requestor.
func ASN1ConvertSignatureNonce(message string, nonce *big.Int, timestamp *atum.Timestamp) *big.Int {
msgHash := sha256.Sum256([]byte(message))
n := nonce.Go()
if n == nil {
n = gobig.NewInt(0)
}
tohash := []interface{}{n, new(gobig.Int).SetBytes(msgHash[:])}
if timestamp != nil {
tohash = append(tohash, timestamp.Sig.Data)
}
asn1bytes, err := asn1.Marshal(tohash)
if err != nil {
log.Print(err) // TODO
}
asn1hash := sha256.Sum256(asn1bytes)
return new(big.Int).SetBytes(asn1hash[:])
}