Platforms to show: All Mac Windows Linux Cross-Platform

Back to DigestMBS class.

DigestMBS.SHA1 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA 1.
Example
Var d as DigestMBS = DigestMBS.SHA1
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA224 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA 224.
Example
Var d as DigestMBS = DigestMBS.SHA224
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA256 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA 256.
Example
Var d as DigestMBS = DigestMBS.SHA256
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA384 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA 384.
Example
Var d as DigestMBS = DigestMBS.SHA384
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA3_224 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 20.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA-3 with 224 bits.
Example
Var d as DigestMBS = DigestMBS.SHA3_224
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA3_256 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 20.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA-3 with 256 bits.
Example
Var d as DigestMBS = DigestMBS.SHA3_256
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA3_384 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 20.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA-3 with 384 bits.
Example
Var d as DigestMBS = DigestMBS.SHA3_384
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA3_512 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 20.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA-3 with 512 bits.
Example
Var d as DigestMBS = DigestMBS.SHA3_512
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA512 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 13.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA512.
Example
Var d as DigestMBS = DigestMBS.SHA512
d.Process "Hello World"
Var result as string = EncodeHex(d.Final)
MsgBox result

DigestMBS.SHA512_224 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 23.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA 512 with 224 bit.
Example
Var d As DigestMBS = DigestMBS.SHA512_224

d.Process "The quick brown fox jumps over the lazy dog"

Var hash As String = d.FinalText

Break
// 944CD2847FB54558D4775DB0485A50003111C8E5DAA63FE722C6AA37

DigestMBS.SHA512_256 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 23.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for SHA 512 with 256 bit.
Example
Var d As DigestMBS = DigestMBS.SHA512_256

d.Process "The quick brown fox jumps over the lazy dog"

Var hash As String = d.FinalText

Break
// DD9D67B371519C339ED8DBD25AF90E976A1EEEFD4AD3D889005E532FC5BEF04D

DigestMBS.shake128 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 23.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for shake 128 bit.
Example
Var d As DigestMBS = DigestMBS.shake128

d.Process "The quick brown fox jumps over the lazy dog"

Var hash As String = d.FinalText

Break
// F4202E3C5852F9182A0430FD8144F0A7

DigestMBS.shake256 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 23.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for shake 256.
Example
Var d As DigestMBS = DigestMBS.shake256

d.Process "The quick brown fox jumps over the lazy dog"

Var hash As String = d.FinalText

Break
// 2F671343D9B2E1604DC9DCF0753E5FE15C7C64A0D283CBBF722D411A0E36F6CA

DigestMBS.sm3 as DigestMBS

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Encryption and Hash MBS Encryption Plugin 23.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Returns the cipher for sm3.
Example
Var d As DigestMBS = DigestMBS.sm3

d.Process "The quick brown fox jumps over the lazy dog"

Var hash As String = d.FinalText

Break
// 5FDFE814B8573CA021983970FC79B2218C9570369B4859684E2E4C3FC76CB8EA

The items on this page are in the following plugins: MBS Encryption Plugin.


The biggest plugin in space...