我正在制作一个人们可以用作登录系统的 DLL。
我做的功能现在应该这样编码:
SecureLogin.register.makeUser("Username", "Password", 2);
现在你必须使用 0 = plaintext 1 = Idk yet 2 = MD5
但为了更容易,我想用这样的东西替换数字 2 :
SecureLogin.HashMethod.MD5
我想让它看起来像这样:
SecureLogin.register.makeUser("Username", "Password", SecureLogin.HashMethod.MD5);
我该如何为此制定方法或功能?
如果我不清楚,请告诉我,我会更详细地描述。