]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/crypto/rsa/rsa.go
[dev.boringcrypto] all: merge master into dev.boringcrypto
[gostls13.git] / src / crypto / rsa / rsa.go
index f43eb0b4d34ce009c7b209c4fc2acfc4759ca72d..65fbcd664a444a574ff3363d876f26dc6db683dc 100644 (file)
@@ -617,7 +617,7 @@ func decryptAndCheck(random io.Reader, priv *PrivateKey, c *big.Int) (m *big.Int
 }
 
 // DecryptOAEP decrypts ciphertext using RSA-OAEP.
-
+//
 // OAEP is parameterised by a hash function that is used as a random oracle.
 // Encryption and decryption of a given message must use the same hash function
 // and sha256.New() is a reasonable choice.