Ignore:
Timestamp:
05/17/19 14:37:12 (5 years ago)
Author:
bln4
Message:

It is now possible to complete the process of recovering access to a Expeditee account. Further work, in the form of frames in the authentication frameset, are to follow.
A refactoring/tidy up has also been completed.

Location:
trunk/src/org/expeditee/encryption
Files:
1 added
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/encryption/Actions.java

    r1362 r1363  
    1 package org.expeditee.auth.sharing;
     1package org.expeditee.encryption;
    22
    33import java.security.InvalidKeyException;
     
    1919import javax.crypto.spec.SecretKeySpec;
    2020
     21import org.expeditee.auth.AuthenticatorBrowser;
    2122import org.expeditee.gui.DisplayController;
    2223import org.expeditee.gui.Frame;
    2324import org.expeditee.gui.FrameIO;
    2425import org.expeditee.items.Text;
     26import org.expeditee.settings.UserSettings;
    2527import org.ngikm.cryptography.CryptographyConstants;
    2628
     
    190192                }
    191193        }
     194
     195        public static void AuthAddSecretKey(String name, String data) {
     196                Frame secretsFrame = FrameIO.LoadFrame(UserSettings.UserName.get() + AuthenticatorBrowser.SECRETS_FRAME);
     197                secretsFrame.addText(500, 500, name, null).addToData(data);
     198        }
    192199}
Note: See TracChangeset for help on using the changeset viewer.