Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApplication15
- {
- public class Credenciais
- {
- class CredentialEncrypter
- {
- public static string EncryptSequence(int password, int hash)
- {
- string result = "";
- int? length = password.ToString().Length > 0 ? password.ToString().Length : 0;
- if(length == null)
- {
- return result;
- }
- else
- {
- throw new Exception("Invalid password or hash");
- }
- }
- }
- }
- public class Funcionario
- {
- }
- class Program
- {
- static void Main(string[] args)
- {
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment