博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
你不从地址栏中增加曝光量所需的数据库ID方法
阅读量:5347 次
发布时间:2019-06-15

本文共 1521 字,大约阅读时间需要 5 分钟。

当你想隐藏数据库id时,你能够使用 Hashids 这个开源库,类似的开源项目比較多,这里仅仅针对 Hashids 做个使用说明

.net  版本号的资料地址例如以下:

官网:http://hashids.org/net/

代码:https://github.com/ullmark/hashids.net

下面是用法:

using System;using HashidsNet;using Microsoft.VisualStudio.TestTools.UnitTesting;namespace HashidsNetTester{    [TestClass]    public class HashidsTest    {        ///         /// 盐        ///         private string salt = "this is my salt string";        [TestMethod]        public void TestEncode()        {            //使用指定掩码,获取最小长度的hash值            Hashids hs = new Hashids(salt,5);            var n1 = 1;            var s1 = hs.Encode(n1);//编码:一个数值进行            var dn1 = hs.Decode(s1)[0];//解码:一个数值            Assert.IsTrue(dn1 == n1);        }        [TestMethod]        public void TestEncodeArr()        {            Hashids hs = new Hashids(salt, 5);            var n1 = new int[]{11,22,33,44};            var s1 = hs.Encode(n1);//编码多个数值组,用于数据库中联合主键            var dn1 = hs.Decode(s1);//解码:获得编码前的联合主键数组            for (int i = 0; i < n1.Length; i++)            {                Assert.IsTrue(dn1[i] == n1[i]);            }        }        [TestMethod]        public void TestEncodeHex()        {            Hashids hs = new Hashids(salt, 5);            var n1 = "1abc";            var s1 = hs.EncodeHex(n1);//编码:16进制数            var dn1 = hs.DecodeHex(s1);//解码:获得16进制数            Assert.IsTrue(n1.Equals(dn1, StringComparison.CurrentCultureIgnoreCase));        }    }}

版权声明:本文博主原创文章。博客,未经同意不得转载。

转载于:https://www.cnblogs.com/gcczhongduan/p/4835813.html

你可能感兴趣的文章
AutoCAD如何倒角 倒圆角 倒直角
查看>>
Office PPT中如何插入flash
查看>>
C# Fade Form Effect With the AnimateWindow API Function
查看>>
golang多维数组的切片
查看>>
IP 网际协议
查看>>
C语言_第五章__实践(密码转换)
查看>>
docker 容器后台运行命令
查看>>
jquery 获取css position的值
查看>>
面向对象的程序设计
查看>>
a标签添加点击事件
查看>>
Context.startActivity出现AndroidRuntimeException
查看>>
Intellij idea创建javaWeb以及Servlet简单实现
查看>>
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I &amp; II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>