Package system.security.cryptography
Class ECDsaCng
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.security.cryptography.AsymmetricAlgorithm
-
- system.security.cryptography.ECDsa
-
- system.security.cryptography.ECDsaCng
-
- All Implemented Interfaces:
java.lang.AutoCloseable,IJCOBridgeReflected
public class ECDsaCng extends ECDsa
The base .NET class managing System.Security.Cryptography.ECDsaCng, System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Security.Cryptography.ECDsaCng
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringassemblyFullNameFully assembly qualified name: System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Corestatic java.lang.StringclassNameQualified class name: System.Security.Cryptography.ECDsaCngstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ECDsaCngcast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoECDsaCng, a cast assert is made to check if types are compatible.ECParametersExportExplicitParameters(boolean includePrivateParameters)ECParametersExportParameters(boolean includePrivateParameters)voidFromXmlString(java.lang.String xmlString)voidFromXmlString(java.lang.String xml, ECKeyXmlFormat format)voidGenerateKey(ECCurve curve)CngAlgorithmgetHashAlgorithm()java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class TypeCngKeygetKey()voidImportParameters(ECParameters parameters)voidsetHashAlgorithm(CngAlgorithm HashAlgorithm)voidsetJCOInstance(JCObject instance)voidsetKey(CngKey Key)byte[]SignData(byte[] data)byte[]SignData(byte[] data, int offset, int count)byte[]SignData(JCORefOut dupParam0)byte[]SignData(JCORefOut dupParam0, int dupParam1, int dupParam2)byte[]SignData(Stream data)byte[]SignHash(byte[] hash)byte[]SignHash(JCORefOut dupParam0)java.lang.StringToXmlString(boolean includePrivateParameters)java.lang.StringToXmlString(ECKeyXmlFormat format)booleanVerifyData(byte[] data, byte[] signature)booleanVerifyData(byte[] data, int offset, int count, byte[] signature)booleanVerifyData(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3)booleanVerifyData(JCORefOut dupParam0, JCORefOut dupParam1)booleanVerifyData(Stream data, byte[] signature)booleanVerifyData(Stream dupParam0, JCORefOut dupParam1)booleanVerifyHash(byte[] hash, byte[] signature)booleanVerifyHash(JCORefOut dupParam0, JCORefOut dupParam1)-
Methods inherited from class system.security.cryptography.ECDsa
Create, Create, CreateNewECDsa, CreateNewECDsa, SignData, SignData, SignData, SignData, SignData, VerifyData, VerifyData, VerifyData, VerifyData, VerifyData, VerifyData
-
Methods inherited from class system.security.cryptography.AsymmetricAlgorithm
Clear, close, Create, Create, Dispose, getKeyExchangeAlgorithm, getKeySize, getLegalKeySizes, getSignatureAlgorithm, setKeySize
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Core- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Security.Cryptography.ECDsaCng- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ECDsaCng
public ECDsaCng(java.lang.Object instance) throws java.lang.ThrowableInternal constructor. Use with caution- Throws:
java.lang.Throwable
-
ECDsaCng
public ECDsaCng() throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, FormatException, PlatformNotSupportedException, CryptographicException
-
ECDsaCng
public ECDsaCng(int keySize) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, CryptographicException- Throws:
java.lang.ThrowableNullReferenceExceptionArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionCryptographicException
-
ECDsaCng
public ECDsaCng(CngKey key) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, CryptographicException, PlatformNotSupportedException, SecurityException, NotSupportedException, MissingMethodException
- Throws:
java.lang.ThrowableNullReferenceExceptionArgumentNullExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionArgumentOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionCryptographicExceptionPlatformNotSupportedExceptionSecurityExceptionNotSupportedExceptionMissingMethodException
-
ECDsaCng
public ECDsaCng(ECCurve curve) throws java.lang.Throwable, NullReferenceException, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, NotSupportedException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classECDsa- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classECDsa- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classECDsa- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classECDsa- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classECDsa
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classECDsa- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static ECDsaCng cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoECDsaCng, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
ECDsaCnginstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
VerifyData
public boolean VerifyData(byte[] data, byte[] signature) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, KeyNotFoundException, CryptographicException, OutOfMemoryException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
VerifyData
public boolean VerifyData(JCORefOut dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
VerifyData
public boolean VerifyData(byte[] data, int offset, int count, byte[] signature) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
VerifyData
public boolean VerifyData(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
VerifyData
public boolean VerifyData(Stream data, byte[] signature) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
VerifyData
public boolean VerifyData(Stream dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
VerifyHash
public boolean VerifyHash(byte[] hash, byte[] signature) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, SecurityException, NotSupportedException, CryptographicException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, RankException- Overrides:
VerifyHashin classECDsa- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionSecurityExceptionNotSupportedExceptionCryptographicExceptionNullReferenceExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionRankException
-
VerifyHash
public boolean VerifyHash(JCORefOut dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, ArgumentOutOfRangeException, FormatException, SecurityException, NotSupportedException, CryptographicException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, RankException
- Overrides:
VerifyHashin classECDsa- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionArgumentOutOfRangeExceptionFormatExceptionSecurityExceptionNotSupportedExceptionCryptographicExceptionNullReferenceExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionRankException
-
SignData
public byte[] SignData(byte[] data) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, KeyNotFoundException, CryptographicException, OutOfMemoryException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
SignData
public byte[] SignData(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
SignData
public byte[] SignData(byte[] data, int offset, int count) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
SignData
public byte[] SignData(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
SignData
public byte[] SignData(Stream data) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, KeyNotFoundException, CryptographicException, OutOfMemoryException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionKeyNotFoundExceptionCryptographicExceptionOutOfMemoryException
-
SignHash
public byte[] SignHash(byte[] hash) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, CryptographicException, ArgumentException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, RankException, SecurityException, NotSupportedException, MissingMethodException- Overrides:
SignHashin classECDsa- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionCryptographicExceptionArgumentExceptionNullReferenceExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionRankExceptionSecurityExceptionNotSupportedExceptionMissingMethodException
-
SignHash
public byte[] SignHash(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, CryptographicException, ArgumentException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, RankException, SecurityException, NotSupportedException, MissingMethodException
- Overrides:
SignHashin classECDsa- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionCryptographicExceptionArgumentExceptionNullReferenceExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionRankExceptionSecurityExceptionNotSupportedExceptionMissingMethodException
-
ExportExplicitParameters
public ECParameters ExportExplicitParameters(boolean includePrivateParameters) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CryptographicException, ArgumentException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, RankException, MissingMethodException, TargetInvocationException, NotSupportedException
- Overrides:
ExportExplicitParametersin classECDsa- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionCryptographicExceptionArgumentExceptionNullReferenceExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionRankExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedException
-
ExportParameters
public ECParameters ExportParameters(boolean includePrivateParameters) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CryptographicException, ArgumentException, NullReferenceException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, PlatformNotSupportedException, RankException, MissingMethodException, TargetInvocationException, NotSupportedException
- Overrides:
ExportParametersin classECDsa- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionCryptographicExceptionArgumentExceptionNullReferenceExceptionNotImplementedExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionPlatformNotSupportedExceptionRankExceptionMissingMethodExceptionTargetInvocationExceptionNotSupportedException
-
ToXmlString
public java.lang.String ToXmlString(boolean includePrivateParameters) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException- Overrides:
ToXmlStringin classAsymmetricAlgorithm- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedException
-
ToXmlString
public java.lang.String ToXmlString(ECKeyXmlFormat format) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, NotSupportedException, CryptographicException, OutOfMemoryException, IndexOutOfRangeException, XmlException, RankException, FormatException
- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionNotSupportedExceptionCryptographicExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionXmlExceptionRankExceptionFormatException
-
FromXmlString
public void FromXmlString(java.lang.String xmlString) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException- Overrides:
FromXmlStringin classAsymmetricAlgorithm- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedException
-
FromXmlString
public void FromXmlString(java.lang.String xml, ECKeyXmlFormat format) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, NotImplementedException, NotSupportedException, IndexOutOfRangeException, ObjectDisposedException, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, AbandonedMutexException, MissingManifestResourceException, MissingMethodException, TargetInvocationException, CultureNotFoundException, FormatException, RankException- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentOutOfRangeExceptionArgumentExceptionNotImplementedExceptionNotSupportedExceptionIndexOutOfRangeExceptionObjectDisposedExceptionInvalidOperationExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionAbandonedMutexExceptionMissingManifestResourceExceptionMissingMethodExceptionTargetInvocationExceptionCultureNotFoundExceptionFormatExceptionRankException
-
GenerateKey
public void GenerateKey(ECCurve curve) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, CryptographicException, OutOfMemoryException, IndexOutOfRangeException, NullReferenceException, NotSupportedException, PlatformNotSupportedException, RankException
- Overrides:
GenerateKeyin classECDsa- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionCryptographicExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionNullReferenceExceptionNotSupportedExceptionPlatformNotSupportedExceptionRankException
-
ImportParameters
public void ImportParameters(ECParameters parameters) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, CryptographicException, ArgumentOutOfRangeException, IndexOutOfRangeException, NullReferenceException, OutOfMemoryException, NotSupportedException, MissingMethodException, TargetInvocationException, PlatformNotSupportedException
- Overrides:
ImportParametersin classECDsa- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionMissingManifestResourceExceptionNotImplementedExceptionObjectDisposedExceptionInvalidOperationExceptionCryptographicExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionNullReferenceExceptionOutOfMemoryExceptionNotSupportedExceptionMissingMethodExceptionTargetInvocationExceptionPlatformNotSupportedException
-
getHashAlgorithm
public CngAlgorithm getHashAlgorithm() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setHashAlgorithm
public void setHashAlgorithm(CngAlgorithm HashAlgorithm) throws java.lang.Throwable, NullReferenceException, ArgumentNullException
- Throws:
java.lang.ThrowableNullReferenceExceptionArgumentNullException
-
getKey
public CngKey getKey() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CryptographicException, ArgumentException, NullReferenceException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException, PlatformNotSupportedException, RankException
- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionCryptographicExceptionArgumentExceptionNullReferenceExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionFormatExceptionPlatformNotSupportedExceptionRankException
-
setKey
public void setKey(CngKey Key) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, CryptographicException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException, NullReferenceException
- Throws:
java.lang.ThrowableArgumentOutOfRangeExceptionArgumentNullExceptionCryptographicExceptionArgumentExceptionNotImplementedExceptionCultureNotFoundExceptionIndexOutOfRangeExceptionMissingManifestResourceExceptionObjectDisposedExceptionInvalidOperationExceptionFormatExceptionNullReferenceException
-
-