forked from cloudflare/circl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
padding.go
38 lines (31 loc) · 1.29 KB
/
padding.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
package rsa
import (
"crypto"
"crypto/rsa"
"io"
"github.com/linckode/circl/tss/rsa/internal"
pss2 "github.com/linckode/circl/tss/rsa/internal/pss"
)
type Padder interface {
Pad(pub *rsa.PublicKey, hash crypto.Hash, hashed []byte) ([]byte, error)
}
type PKCS1v15Padder struct{}
func (PKCS1v15Padder) Pad(pub *rsa.PublicKey, hash crypto.Hash, hashed []byte) ([]byte, error) {
return internal.PadPKCS1v15(pub, hash, hashed)
}
// PSSPadder is a padder for RSA Probabilistic Padding Scheme (RSA-PSS) used in TLS 1.3
//
// Note: If the salt length is non-zero, PSS padding is not deterministic.
// TLS 1.3 mandates that the salt length is the same as the hash output length. As such, each player cannot
// pad the message individually, otherwise they will produce unique messages and the signature will not be valid.
// Instead, one party should generate a random saltLen byte string. When requesting signatures from the rest of the
// parties they should send along the same random string to be used as `rand` here.
//
// For TLS, rsa.PSSOptions.SaltLength should be PSSSaltLengthEqualsHash.
type PSSPadder struct {
Rand io.Reader
Opts *rsa.PSSOptions
}
func (pss *PSSPadder) Pad(pub *rsa.PublicKey, hash crypto.Hash, hashed []byte) ([]byte, error) {
return pss2.PadPSS(pss.Rand, pub, hash, hashed, pss.Opts)
}