- 博客(1)
- 资源 (5)
- 收藏
- 关注
转载 CA证书申请+IIS配置HTTPS+默认访问https路径
一.CA证书申请(一). 新StartSSL注册帐号 1. StartSSL官网官方网站:https://www.startssl.com/ 2. 进入到StartSSL后,直接点击注册账号,然后进入邮箱注册页面。 3. 点击发送验证码,进入如下页面,从邮箱中获取验证码,并在下图中填写到指定位置,点击Sign Up。 4. 成功验证了邮箱地址后...
2018-07-10 09:02:21
1514
Delphi DES算法实现
DES算法实现
function EncryStr(Str, Key: String): String;
var
StrByte, OutByte, KeyByte: array[0..7] of Byte;
StrResult: String;
I, J: Integer;
begin
if (Length(Str) > 0) and (Ord(Str[Length(Str)]) = 0) then
raise Exception.Create('Error: the last char is NULL char.');
if Length(Key) < 8 then
while Length(Key) < 8 do Key := Key + Chr(0);
while Length(Str) mod 8 <> 0 do Str := Str + Chr(0);
for J := 0 to 7 do KeyByte[J] := Ord(Key[J + 1]);
makeKey(keyByte, subKey);
StrResult := '';
for I := 0 to Length(Str) div 8 - 1 do
begin
for J := 0 to 7 do
StrByte[J] := Ord(Str[I * 8 + J + 1]);
desData(dmEncry, StrByte, OutByte);
for J := 0 to 7 do
StrResult := StrResult + Chr(OutByte[J]);
end;
Result := StrResult;
end;
2010-11-09
VS2013 WinForm ReportViewer 子报表 使用分组功能实现批量打印
VS2013 WinForm ReportViewer 子报表功能, 使用分组功能实现分页批量打印
2019-01-18
VS2013 WinForm ReportViewer子报表示例
VS2013开发WinForm端ReportViewer子报表示例,注意点:1。子报表的参数设置;2.主报表中设置子报表的属性参数
2019-01-18
radstudio2007.slip
radstudio2007.slip delphi2007破解文件
把radstudio2007.slip放到Install目录再进行安装即可。
2013-08-29
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅