Changeset 1389 for trunk


Ignore:
Timestamp:
05/28/19 13:01:45 (5 years ago)
Author:
bln4
Message:

Moved things out of the old NGIKM package and deleted it.

Location:
trunk/src/org
Files:
1 deleted
9 edited
1 copied

Legend:

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

    r1387 r1389  
    4848import org.expeditee.auth.mail.gui.MailBay;
    4949import org.expeditee.auth.tags.AuthenticationTag;
     50import org.expeditee.encryption.CryptographyConstants;
    5051import org.expeditee.gio.gesture.StandardGestureActions;
    5152import org.expeditee.gui.DisplayController;
     
    5859import org.expeditee.settings.identity.secrets.KeyList;
    5960import org.expeditee.stats.Formatter;
    60 import org.ngikm.cryptography.CryptographyConstants;
    6161
    6262public class Actions implements CryptographyConstants {
  • trunk/src/org/expeditee/auth/AuthenticatorBrowser.java

    r1363 r1389  
    4747import org.expeditee.core.Dimension;
    4848import org.expeditee.core.Point;
     49import org.expeditee.encryption.CryptographyConstants;
    4950import org.expeditee.gio.EcosystemManager;
    5051import org.expeditee.gio.GraphicsManager;
     
    6768import org.expeditee.settings.identity.secrets.KeyList;
    6869import org.expeditee.stats.Formatter;
    69 import org.ngikm.cryptography.CryptographyConstants;
    7070
    7171public final class AuthenticatorBrowser extends Browser implements CryptographyConstants {
  • trunk/src/org/expeditee/auth/EncryptedExpReader.java

    r1323 r1389  
    2020import javax.crypto.spec.SecretKeySpec;
    2121
     22import org.expeditee.encryption.CryptographyConstants;
    2223import org.expeditee.gui.Frame;
    2324import org.expeditee.io.ExpReader;
    2425import org.expeditee.items.Text;
    2526import org.expeditee.settings.identity.secrets.KeyList;
    26 import org.ngikm.cryptography.CryptographyConstants;
    2727
    2828public class EncryptedExpReader extends ExpReader implements CryptographyConstants {
  • trunk/src/org/expeditee/auth/EncryptedExpWriter.java

    r1326 r1389  
    1616import javax.crypto.spec.SecretKeySpec;
    1717
     18import org.expeditee.encryption.CryptographyConstants;
    1819import org.expeditee.gui.Frame;
    1920import org.expeditee.gui.FrameIO;
     
    2324import org.expeditee.settings.UserSettings;
    2425import org.expeditee.settings.identity.secrets.KeyList;
    25 import org.ngikm.cryptography.CryptographyConstants;
    2626
    2727public class EncryptedExpWriter extends ExpWriter implements CryptographyConstants {
  • trunk/src/org/expeditee/auth/account/Authenticate.java

    r1363 r1389  
    2727import org.expeditee.auth.mail.gui.MailBay;
    2828import org.expeditee.auth.tags.AuthenticationTag;
     29import org.expeditee.encryption.CryptographyConstants;
    2930import org.expeditee.gui.Browser;
    3031import org.expeditee.gui.DisplayController;
     
    3738import org.expeditee.settings.UserSettings;
    3839import org.expeditee.settings.identity.secrets.KeyList;
    39 import org.ngikm.cryptography.CryptographyConstants;
    4040
    4141public class Authenticate implements CryptographyConstants {
  • trunk/src/org/expeditee/auth/account/Create.java

    r1363 r1389  
    3030import org.expeditee.auth.tags.AuthenticationTag;
    3131import org.expeditee.core.Colour;
     32import org.expeditee.encryption.CryptographyConstants;
    3233import org.expeditee.gui.DisplayController;
    3334import org.expeditee.gui.Frame;
     
    4647import org.expeditee.settings.folders.FolderSettings;
    4748import org.expeditee.settings.identity.secrets.KeyList;
    48 import org.ngikm.cryptography.CryptographyConstants;
    4949
    5050public class Create implements CryptographyConstants {
  • trunk/src/org/expeditee/auth/account/Password.java

    r1368 r1389  
    3434import org.expeditee.auth.mail.Mail.MailEntry;
    3535import org.expeditee.auth.tags.AuthenticationTag;
     36import org.expeditee.encryption.CryptographyConstants;
    3637import org.expeditee.gui.DisplayController;
    3738import org.expeditee.gui.Frame;
     
    4344import org.expeditee.settings.identity.secrets.KeyList;
    4445import org.expeditee.stats.Formatter;
    45 import org.ngikm.cryptography.CryptographyConstants;
    4646
    4747import com.codahale.shamir.Scheme;
  • trunk/src/org/expeditee/auth/mail/Mail.java

    r1375 r1389  
    3939import org.expeditee.auth.mail.gui.MailBay;
    4040import org.expeditee.encryption.Actions;
     41import org.expeditee.encryption.CryptographyConstants;
    4142import org.expeditee.gui.FrameIO;
    4243import org.expeditee.settings.UserSettings;
    43 import org.ngikm.cryptography.CryptographyConstants;
    4444
    4545public class Mail implements CryptographyConstants {
  • trunk/src/org/expeditee/encryption/Actions.java

    r1363 r1389  
    2525import org.expeditee.items.Text;
    2626import org.expeditee.settings.UserSettings;
    27 import org.ngikm.cryptography.CryptographyConstants;
    2827
    2928import com.codahale.shamir.Scheme;
  • trunk/src/org/expeditee/encryption/CryptographyConstants.java

    r1388 r1389  
    1 package org.ngikm.cryptography;
     1package org.expeditee.encryption;
    22
    33public interface CryptographyConstants {
Note: See TracChangeset for help on using the changeset viewer.