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.String
assemblyFullName
Fully assembly qualified name: System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Corestatic java.lang.String
className
Qualified class name: System.Security.Cryptography.ECDsaCngstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ECDsaCng
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoECDsaCng
, a cast assert is made to check if types are compatible.ECParameters
ExportExplicitParameters(boolean includePrivateParameters)
ECParameters
ExportParameters(boolean includePrivateParameters)
void
FromXmlString(java.lang.String xmlString)
void
FromXmlString(java.lang.String xml, ECKeyXmlFormat format)
void
GenerateKey(ECCurve curve)
CngAlgorithm
getHashAlgorithm()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeCngKey
getKey()
void
ImportParameters(ECParameters parameters)
void
setHashAlgorithm(CngAlgorithm HashAlgorithm)
void
setJCOInstance(JCObject instance)
void
setKey(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.String
ToXmlString(boolean includePrivateParameters)
java.lang.String
ToXmlString(ECKeyXmlFormat format)
boolean
VerifyData(byte[] data, byte[] signature)
boolean
VerifyData(byte[] data, int offset, int count, byte[] signature)
boolean
VerifyData(JCORefOut dupParam0, int dupParam1, int dupParam2, JCORefOut dupParam3)
boolean
VerifyData(JCORefOut dupParam0, JCORefOut dupParam1)
boolean
VerifyData(Stream data, byte[] signature)
boolean
VerifyData(Stream dupParam0, JCORefOut dupParam1)
boolean
VerifyHash(byte[] hash, byte[] signature)
boolean
VerifyHash(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.Throwable
Internal 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.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
CryptographicException
-
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.Throwable
NullReferenceException
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
CryptographicException
PlatformNotSupportedException
SecurityException
NotSupportedException
MissingMethodException
-
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:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classECDsa
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classECDsa
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classECDsa
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classECDsa
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classECDsa
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classECDsa
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static ECDsaCng cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoECDsaCng
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
ECDsaCng
instance- 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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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:
VerifyHash
in classECDsa
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
FormatException
SecurityException
NotSupportedException
CryptographicException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
RankException
-
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:
VerifyHash
in classECDsa
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
ArgumentOutOfRangeException
FormatException
SecurityException
NotSupportedException
CryptographicException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
RankException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
KeyNotFoundException
CryptographicException
OutOfMemoryException
-
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:
SignHash
in classECDsa
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
CryptographicException
ArgumentException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
RankException
SecurityException
NotSupportedException
MissingMethodException
-
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:
SignHash
in classECDsa
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
CryptographicException
ArgumentException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
RankException
SecurityException
NotSupportedException
MissingMethodException
-
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:
ExportExplicitParameters
in classECDsa
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
CryptographicException
ArgumentException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
RankException
MissingMethodException
TargetInvocationException
NotSupportedException
-
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:
ExportParameters
in classECDsa
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
CryptographicException
ArgumentException
NullReferenceException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
PlatformNotSupportedException
RankException
MissingMethodException
TargetInvocationException
NotSupportedException
-
ToXmlString
public java.lang.String ToXmlString(boolean includePrivateParameters) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
ToXmlString
in classAsymmetricAlgorithm
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
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.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
NotSupportedException
CryptographicException
OutOfMemoryException
IndexOutOfRangeException
XmlException
RankException
FormatException
-
FromXmlString
public void FromXmlString(java.lang.String xmlString) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
- Overrides:
FromXmlString
in classAsymmetricAlgorithm
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
-
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.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
NotImplementedException
NotSupportedException
IndexOutOfRangeException
ObjectDisposedException
InvalidOperationException
SecurityException
UnauthorizedAccessException
IOException
AbandonedMutexException
MissingManifestResourceException
MissingMethodException
TargetInvocationException
CultureNotFoundException
FormatException
RankException
-
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:
GenerateKey
in classECDsa
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
CryptographicException
OutOfMemoryException
IndexOutOfRangeException
NullReferenceException
NotSupportedException
PlatformNotSupportedException
RankException
-
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:
ImportParameters
in classECDsa
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
InvalidOperationException
CryptographicException
ArgumentOutOfRangeException
IndexOutOfRangeException
NullReferenceException
OutOfMemoryException
NotSupportedException
MissingMethodException
TargetInvocationException
PlatformNotSupportedException
-
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.Throwable
NullReferenceException
ArgumentNullException
-
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.Throwable
ArgumentOutOfRangeException
ArgumentNullException
CryptographicException
ArgumentException
NullReferenceException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
FormatException
PlatformNotSupportedException
RankException
-
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.Throwable
ArgumentOutOfRangeException
ArgumentNullException
CryptographicException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
FormatException
NullReferenceException
-
-