首页
社区
课程
招聘
[转帖]Base64-Converter 1.0
发表于: 2014-6-13 01:17 2224

[转帖]Base64-Converter 1.0

2014-6-13 01:17
2224
Base64-Converter 1.0

Lightweight and clear-cut application which enables you to encode or decode body texts using Base64 with just a click of the button

Written by Madalina Boboc


Base64-Converter is a software program which can be used in order to decode Base64 strings, as well as encode body texts, with a minimal amount of effort.

The conveniences of a portable app

The installation process is not a necessity, as this product is portable. This means that, unlike installers, it is not going to update the Windows registry and Start menu/screen with new items without your approval, and no remnants are going to be left behind after its removal from the disk.

You should also keep in mind that Base64-Converter can be used on the fly, on any computer you come in contact with, by simply moving the program files to an external data device.

Intuitive environment and simple method of use

The interface is minimal and clean, as it only includes a menu bar, two buttons and a pane in which to input text and view results. In addition to that, Help contents are incorporated, thus ensuring that all user categories can find their way around it with ease.

In order to encode a selected body text, all you have to do is paste it in the main window and click the “Encode” button. The same steps are also available for decoding strings, and regardless of the one under way, the results are going to be revealed immediately. No other notable options are integrated.

Bottom line

In conclusion, Base64-Converter is a simple, yet pretty efficient piece of software, dedicated to all user categories who want to decode Base64 strings or encode texts with this algorithm. The response time is very good, the system’s performance is not burdened and our tests did not reveal any errors or crashes in our tests.

http://www.softpedia.com/dyn-postdownload.php/27ab033d36990f63922ba69f4304cbb8/5399e13d/2f442/0/1



留个纪念吧 ,护士同意我看世界杯.
很是高兴,发个贴

[课程]Linux pwn 探索篇!

上传的附件:
收藏
免费 1
支持
分享
最新回复 (10)
雪    币: 439
活跃值: (106)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
本地备份一份,林版辛苦了。养病期还是不要熬夜的好。

Base64Converter.zip
上传的附件:
2014-6-13 01:29
0
雪    币: 219
活跃值: (738)
能力值: (RANK:290 )
在线值:
发帖
回帖
粉丝
3
老林 应该来点 苦瓜着东西对身体好着呢
2014-6-13 01:47
0
雪    币: 93908
活跃值: (200199)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
4
谢谢Pan88168, viphack.
在这里养病 今天休息很多 和医生护士谈好 同意 我才....
2014-6-13 02:01
0
雪    币: 39
活跃值: (25)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
5
早 =。=
2014-6-13 02:16
0
雪    币: 1626
活跃值: (138)
能力值: ( LV4,RANK:40 )
在线值:
发帖
回帖
粉丝
6
public string Encode(string str)
{
    return Convert.ToBase64String(Encoding.UTF8.GetBytes(str));
}

  public string Encode(string str)
{
    return Convert.ToBase64String(Encoding.UTF8.GetBytes(str));
}

public string Decode(string str)
{
    byte[] bytes = Convert.FromBase64String(str);
    return Encoding.UTF8.GetString(bytes);
}

  public string Decode(string str)
{
    byte[] bytes = Convert.FromBase64String(str);
    return Encoding.UTF8.GetString(bytes);
}
2014-6-13 09:49
0
雪    币: 7724
活跃值: (3634)
能力值: ( LV2,RANK:15 )
在线值:
发帖
回帖
粉丝
7
谢谢林版分享,林版要注意身体啊。
2014-6-13 11:06
0
雪    币: 102
活跃值: (31)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
8
其实林版分享的这些东西我都看不懂...
2014-6-13 12:17
0
雪    币: 496
活跃值: (89)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
9
林版多保重身体,世界很精彩,需要我们慢慢的发现。
2014-6-13 15:15
0
雪    币: 175
活跃值: (2326)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
10
本地下载一份吧,那个连接不知道怎么下载。
2014-6-15 17:21
0
雪    币: 222
活跃值: (185)
能力值: ( LV2,RANK:15 )
在线值:
发帖
回帖
粉丝
11
保重身体
2014-6-20 01:09
0
游客
登录 | 注册 方可回帖
返回
//