/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            string data;

            /* FIX: Use a regular string (non-sensitive string) */
            data = "Hello World";
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE319_Cleartext_Tx_Sensitive_Info__send_67b.GoodG2BSink(dataContainer);
        }
        /* goodB2G() - use badsource and goodsink */
        private static void GoodB2G()
        {
            string data;

            using (SecureString securePwd = new SecureString())
            {
                for (int i = 0; i < "AP@ssw0rd".Length; i++)
                {
                    /* INCIDENTAL: CWE-798 Use of Hard-coded Credentials */
                    securePwd.AppendChar("AP@ssw0rd"[i]);
                }

                /* POTENTIAL FLAW: Set data to be a password, which can be transmitted over a non-secure
                 * channel in the sink */
                data = securePwd.ToString();
            }
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE319_Cleartext_Tx_Sensitive_Info__send_67b.GoodB2GSink(dataContainer);
        }