func TestEMSAPSS(t *testing.T) { … } // TestPSSGolden tests all the test vectors in pss-vect.txt from // ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-1/pkcs-1v2-1-vec.zip func TestPSSGolden(t *testing.T) { … } // TestPSSOpenSSL ensures that we can verify a PSS signature from OpenSSL with // the default options. OpenSSL sets the salt length to be maximal. func TestPSSOpenSSL(t *testing.T) { … } func TestPSSNilOpts(t *testing.T) { … } func TestPSSSigning(t *testing.T) { … } func TestPSS513(t *testing.T) { … } func bigFromHex(hex string) *big.Int { … } func intFromHex(hex string) int { … } func fromHex(hexStr string) []byte { … } func TestInvalidPSSSaltLength(t *testing.T) { … } func TestHashOverride(t *testing.T) { … }