Bitcoin Forum
May 07, 2024, 02:06:52 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: [1]
  Print  
Author Topic: Need a programmer - want sha256 calculated very quickly  (Read 693 times)
Samdo (OP)
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 21, 2016, 03:56:13 PM
 #1

Hey I want a bot that do the following very quickly !


1) I upload file whih has some unique text in them. ( 1 line = 1 sentence )

2) I want a program that gets sha1 for each of those sentence and give me in a new notepad in front of the sentence

anyone who can do this >

1715090812
Hero Member
*
Offline Offline

Posts: 1715090812

View Profile Personal Message (Offline)

Ignore
1715090812
Reply with quote  #2

1715090812
Report to moderator
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715090812
Hero Member
*
Offline Offline

Posts: 1715090812

View Profile Personal Message (Offline)

Ignore
1715090812
Reply with quote  #2

1715090812
Report to moderator
icanscript
Hero Member
*****
Offline Offline

Activity: 686
Merit: 502



View Profile
February 21, 2016, 04:05:04 PM
 #2

Hey I want a bot that do the following very quickly !


1) I upload file whih has some unique text in them. ( 1 line = 1 sentence )

2) I want a program that gets sha1 for each of those sentence and give me in a new notepad in front of the sentence

anyone who can do this >

So you want to input some data and have an output of sha1?
Angell
Hero Member
*****
Offline Offline

Activity: 565
Merit: 503



View Profile
February 21, 2016, 04:05:29 PM
 #3

I can do it. It depends how much are you offering to pay? Smiley

icanscript
Hero Member
*****
Offline Offline

Activity: 686
Merit: 502



View Profile
February 21, 2016, 04:17:29 PM
 #4

AutoIT

https://www.dropbox.com/s/k1mlkw6w2wf1ffb/sha1.zip?dl=0

Source and EXE, Run from source if you dont trust. Just download AutoIT.

Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Outfile=sha1.exe
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ComboConstants.au3>
#include <Crypt.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StringConstants.au3>
#include <WindowsConstants.au3>

$sTextFile = FileOpenDialog("Open File", default, "All (*.*)")

$sFileOpen = FileOpen($sTextFile, 'r')
$sFileRead = FileRead($sFileOpen)

_Crypt_Startup()

$sHash = _Crypt_HashData($sFileRead, $CALG_SHA1)

MsgBox(16, "SHA1", $sHash)

_Crypt_Shutdown()

OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3472
Merit: 6125



View Profile
February 21, 2016, 04:26:14 PM
 #5

Hey I want a bot that do the following very quickly !


1) I upload file whih has some unique text in them. ( 1 line = 1 sentence )

2) I want a program that gets sha1 for each of those sentence and give me in a new notepad in front of the sentence

anyone who can do this >

It doesn't seem like anything big to do , but how much are you offering ? and just to get things clear are you willing to do this for example ?

Assuming that File_1.txt contains the following :
Quote
I'm eating an apple.
BiPolarBob giveaways are awesome.
Bitcoin is the best currency ever !

File_2.txt should look like this ? :

Quote
I'm eating an apple. SHA1_HERE
BiPolarBob giveaways are awesome. SHA1_HERE
Bitcoin is the best currency ever ! SHA1_HERE

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Samdo (OP)
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 22, 2016, 01:50:15 AM
 #6

Hey I want a bot that do the following very quickly !


1) I upload file whih has some unique text in them. ( 1 line = 1 sentence )

2) I want a program that gets sha1 for each of those sentence and give me in a new notepad in front of the sentence

anyone who can do this >

It doesn't seem like anything big to do , but how much are you offering ? and just to get things clear are you willing to do this for example ?

Assuming that File_1.txt contains the following :
Quote
I'm eating an apple.
BiPolarBob giveaways are awesome.
Bitcoin is the best currency ever !

File_2.txt should look like this ? :

Quote
I'm eating an apple. SHA1_HERE
BiPolarBob giveaways are awesome. SHA1_HERE
Bitcoin is the best currency ever ! SHA1_HERE

Yes exactly this is what I want, can u do it , plz tell a price

Samdo (OP)
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 22, 2016, 01:50:49 AM
 #7

AutoIT

https://www.dropbox.com/s/k1mlkw6w2wf1ffb/sha1.zip?dl=0

Source and EXE, Run from source if you dont trust. Just download AutoIT.

Code:
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Outfile=sha1.exe
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <ComboConstants.au3>
#include <Crypt.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StringConstants.au3>
#include <WindowsConstants.au3>

$sTextFile = FileOpenDialog("Open File", default, "All (*.*)")

$sFileOpen = FileOpen($sTextFile, 'r')
$sFileRead = FileRead($sFileOpen)

_Crypt_Startup()

$sHash = _Crypt_HashData($sFileRead, $CALG_SHA1)

MsgBox(16, "SHA1", $sHash)

_Crypt_Shutdown()


I dont just need 1 sha for whole file, I want many sha for each different line, can u help ?

Samdo (OP)
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 22, 2016, 01:51:00 AM
 #8

I can do it. It depends how much are you offering to pay? Smiley

ask how much u want bro ?

bitspill
Legendary
*
Offline Offline

Activity: 2058
Merit: 1015



View Profile
February 22, 2016, 06:55:04 AM
 #9

Sha1 or Sha256?

Title says 256 but the OP says 1.

Anyway, is an offline html page that can be opened in the browser like so... what you want?

(Just added SHA-256 as a second button, not shown in screenshot)

0.06 BTC I'll post the source in a code box here for anyone to use, or PM if you prefer.

1HsddZ1xCkpXuGwGsos4ZX3CWzVS5NkLba

{ BitSpill }
MargonCreatives
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
February 22, 2016, 07:17:28 AM
 #10

I messaged him but he said he dont need it anymore. I think he should make a post here though.

         ░░▒░     
        ░░▒▒▒░     
        ░▒▒▓▓░░   
░░░░░░░░▒▒▓▓▓▒░░   
▓▓▓▓▓▓▒▒▒▓▓▓▓▓▒▒░░░
▒▒▒▓▓▓▒░░▒▒▒▒▓▓▓▓▒░
 ░░▒▓▓▒░░ ░░░▒▓▓▓▒▒
 ░░▒▓▓▒░░░░░▒▓▓▓▒▒░
 ░░▒▓▓▒▒▒▓▓▓▓▓▓▒▒░░
 ░░▒▓▓▒░░▒▒▒▒▓▓▓▓▓▒
 ░░▒▓▓▒░░    ░▒▓▓▓▓
░░░▒▓▓▒░░░░░░▒▒▓▓▓▓
▒▓▓▓▓▓▒▒▒▒▓▓▓▓▓▓▓▒▒
▒▒▓▓▓▓▒░░▒▒▒▒░░░░░
░░▒▓▓▓░░           
 ░▒▓▓▒░           
OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3472
Merit: 6125



View Profile
February 22, 2016, 07:54:02 AM
 #11

Once I posted on this topic , I received a PM from someone who says that OP owes him some decent amount of cash and I shouldn't deal with him , so who ever is planning to do this transaction should make sure to use either escrow or OP send first . just a heads up (Negative trust says it all anyway)

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
bitspill
Legendary
*
Offline Offline

Activity: 2058
Merit: 1015



View Profile
February 22, 2016, 08:05:42 AM
 #12

Once I posted on this topic , I received a PM from someone who says that OP owes him some decent amount of cash and I shouldn't deal with him , so who ever is planning to do this transaction should make sure to use either escrow or OP send first . just a heads up (Negative trust says it all anyway)

Of course, I completed it for the thrill of it but will not send any of the code until payment is received. Granted his negative trust is for advertising a ponzi which I'm not sure makes someone necessarily untrustworthy in itself since the entire investor-games section is shady overall yet it exists.

{ BitSpill }
nakedbitcoins
Sr. Member
****
Offline Offline

Activity: 300
Merit: 250


Nakedbitcoins.com !


View Profile WWW
February 23, 2016, 06:16:07 PM
 #13

Yes, that is me. I would hold off as I'm waiting for my escrow back and HTML files that due to me . Been over 3 days late. As of now till those are returned Samdo is a scammer. He obviously will use the funds to pay for this but its up to you accept it.

nakedbitcoins
Sr. Member
****
Offline Offline

Activity: 300
Merit: 250


Nakedbitcoins.com !


View Profile WWW
February 26, 2016, 10:24:42 PM
 #14

Formally scammed by Samdo:
https://bitcointalk.org/index.php?topic=1378293.msg14021787#msg14021787

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!