コード例 #1
0
        public static ExportState CreateWithContainer(RSAEncryption rsaEncryption)
        {
            var state = new ExportState
            {
                _rsaEncryption = rsaEncryption
            };

            return(state);
        }
コード例 #2
0
        public override void Handle(Context context)
        {
            if (!context.Arguments.TryGetValue(WellKnownCommandArguments.CONTAINER_NAME, out var containerName))
            {
                throw new ContainerNameMissingException("Missing container name argument when creating key. try create --help for more information");
            }

            if (!context.Arguments.TryGetValue(WellKnownCommandArguments.USERNAME, out var username))
            {
                throw new UsernameMissingException("Missing username argument when creating key. try create --help for more information");
            }

            var rsaEncryption = new RSAEncryption(containerName, username);

            if (context.Arguments.Any(kvp => kvp.Key == WellKnownCommandArguments.EXPORT_KEY_PATH))
            {
                context.State = ExportState.CreateWithContainer(rsaEncryption);
            }
            else
            {
                SetEndState(context);
            }
        }