Help for this page

Select Code to Download


  1. or download this
            private static string Encrypt(string s)
            {
    ...
                        provider.Clear();
                }
            }
    
  2. or download this
    use strict;
    use MIME::Base64;
    ...
    print encode_base64(sha1('1234')) . "\n";
    
    print decode("UCS-2BE", decode_base64('E59pyTwEJJao6VjsWTBmLGzMr78='))
    +;
    
  3. or download this
            // s = '1234'
            private static string Encrypt(string s)
    ...
                        provider.Clear();
                }
            }