diff --git a/docs/xml/Java.Security.Spec/EdECPrivateKeySpec.xml b/docs/xml/Java.Security.Spec/EdECPrivateKeySpec.xml index bb448d686..af37313c3 100644 --- a/docs/xml/Java.Security.Spec/EdECPrivateKeySpec.xml +++ b/docs/xml/Java.Security.Spec/EdECPrivateKeySpec.xml @@ -92,6 +92,7 @@ the algorithm parameters. the key as a byte array. This array is copied to protect against subsequent modification. + if params or bytes is null. Construct a private key spec using the supplied parameters and bit string. diff --git a/docs/xml/Java.Security.Spec/EdECPublicKeySpec.xml b/docs/xml/Java.Security.Spec/EdECPublicKeySpec.xml index 5d30b6abc..364d14b3d 100644 --- a/docs/xml/Java.Security.Spec/EdECPublicKeySpec.xml +++ b/docs/xml/Java.Security.Spec/EdECPublicKeySpec.xml @@ -90,6 +90,7 @@ the algorithm parameters. the point representing the public key. + if params or point is null. Construct a public key spec using the supplied parameters and point. diff --git a/docs/xml/Java.Security.Spec/XECPrivateKeySpec.xml b/docs/xml/Java.Security.Spec/XECPrivateKeySpec.xml index 810ed08e7..addb21005 100644 --- a/docs/xml/Java.Security.Spec/XECPrivateKeySpec.xml +++ b/docs/xml/Java.Security.Spec/XECPrivateKeySpec.xml @@ -91,6 +91,7 @@ the algorithm parameters the unpruned encoded scalar value. This array is copied to protect against subsequent modification. + if params or scalar is null. Construct a private key spec using the supplied parameters and encoded scalar value. diff --git a/docs/xml/Java.Security.Spec/XECPublicKeySpec.xml b/docs/xml/Java.Security.Spec/XECPublicKeySpec.xml index 92e3bb7eb..ae7ac9f61 100644 --- a/docs/xml/Java.Security.Spec/XECPublicKeySpec.xml +++ b/docs/xml/Java.Security.Spec/XECPublicKeySpec.xml @@ -91,6 +91,7 @@ the algorithm parameters the u-coordinate of the point, represented using a BigInteger which may hold any value + if params or u is null. Construct a public key spec using the supplied parameters and u coordinate.