source: trunk/src/org/expeditee/settings/identity/secrets/KeyList.java@ 1241

Last change on this file since 1241 was 1241, checked in by bln4, 5 years ago

Renamed these settings

File size: 720 bytes
Line 
1package org.expeditee.settings.identity.secrets;
2
3import org.expeditee.items.Text;
4import org.expeditee.setting.TextSetting;
5
6public class KeyList {
7 public static final TextSetting PersonalKey = new TextSetting("The AES key used to secure your profile frame - do not share with anyone!", "PersonalKey") {
8 @Override
9 public Text generateText() {
10 Text t = new Text("PersonalKey");
11 return t;
12 }
13 };
14
15 public static final TextSetting PrivateKey = new TextSetting("The RSA key used to decrypt things encrypted with your RSA public key - do not share with anyone!", "PrivateKey") {
16 @Override
17 public Text generateText() {
18 Text t = new Text("PrivateKey");
19 return t;
20 }
21 };
22}
Note: See TracBrowser for help on using the repository browser.