Crypto Methods
The Crypto type exposes the following members.
Methods
Name | Description | |
---|---|---|
Cipher(String) |
Cipher text using internal password, please note that any one with this software can read this and should not be used on sensitive data
|
|
Cipher(array<Byte>[]()[][], X509Certificate2) |
Ciphers the specified clear text.
|
|
Cipher(String, EncryptionScope, CipherMethod) |
Ciphers the specified clear text in a platform independent way.
|
|
Cipher(String, String, CipherMethod) |
Cypher text using a password and a specified security level
|
|
Cipher(String, String, String) |
Cipher the text using a certificate
|
|
Cipher(String, String) |
Cypher text using a hashing algorithm and a password
|
|
Decipher(array<Byte>[]()[][], X509Certificate2) |
Deciphers the specified cypher bytes.
|
|
Decipher(array<Byte>[]()[][], EncryptionScope, CipherMethod) |
Cypher text using a password and a specified security level
|
|
Decipher(array<Byte>[]()[][], String, CipherMethod) |
Cypher text using a password and a specified security level
|
|
Decipher(String, String) |
decipher text encoded with a password
|
|
Decipher(String) |
decipher text encoded with a default password
|
|
DecipherSecure |
Deciphers a string and returns it in a read-only SecureString
|
|
Decrypt(String, String, String) |
Deciphers text that was cyphered with a given certificate
|
|
Free |
free certificates that are held in memory, if any
|
|
UnZip(String) |
UnZips a compressed string
|
|
UnZip(String, X509Certificate2) |
Unzips a compressed encrypted string
|
|
UnZip(String, String) |
Unzips a compressed encrypted string
|
|
Zip(String) |
Compress given string default cipher used
|
|
Zip(String, String) |
Compress given string and a cipher used
|
|
Zip(String, X509Certificate2) |
Zips the specified clear text using the certificate's public key to encrypt.
|