rsaRawPublic
Carry out RSA transformation on raw data using public key.
Syntax
[VBA]
Public Function rsaRawPublic ( _
lpData() As Byte, _
szPublicKey As String, _
Optional nOptions As Long = 0 _
) As Byte()
Parameters
- lpData
- Data to be transformed.
- szPublicKey
- Public key in internal string format.
- nOptions
- For future use.
Return Value
Byte(): Transformed data.
Remarks
The data must be same length as key modulus (use RSA_KeyBytes()
to find this).