Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Creates a new private key.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Sign | 6.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example | Flags |
---|---|---|---|
Bits | The bit size. e.g. 1024, 2048, 4096, etc. Default is 4096. |
4096 | Optional |
Exp | The exponent to use. Default is 65537. |
65537 | Optional |
Algorithm | Which algorithm to use. Can be for example RC2, blowfish, AES128, AES192, AES256. See Encryption.Cipher. | "AES-128-CFB" | Optional |
PasswordType | The type of input for optional password. Can be Text, Container, Image, Path, PDF, Data, base64 or Hex. |
"Text" | Optional |
PasswordData | The actual input data for the password. Text, container or file path. |
"Hello World" | Optional |
PasswordEncoding | The text encoding for text input. Parameter is ignored for other cases. |
"UTF-8" | Optional |
Returns key as text or error.
Generate keys:
Set Variable [$privateKey; Value:MBS( "RSA.GeneratePrivateKey")]
Set Variable [$publickey; Value:MBS( "RSA.GetPublicKey"; "text"; $privateKey; "UTF-8")]
Set Field [Table::PrivateKey; $privateKey]
Set Field [Table::PublicKey; $publicKey]
Generate key with text password:
MBS( "RSA.GeneratePrivateKey"; 4096; 65537; "AES-128-CBC"; "text"; "Hello" )
This function checks for a license.
Created 12nd March 2016, last changed 15th October 2017