Bitcoin Forum
April 24, 2024, 11:55:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 [9]  All
  Print  
Author Topic: Create vanity bitcoin addresses four times as fast  (Read 31946 times)
molok
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
July 20, 2014, 07:16:41 AM
 #161

I may be doing this wrong, but can someone tell me why I got a Bad signature when verifying the latest windows 64 bit binaries with compressed key option for higher end graphics cards?

Code:
gpg: assuming signed data in `oclvanitygen.zip'
gpg: Signature made 10/24/13 00:45:00 Eastern Daylight Time using RSA key ID 223
C67C3
gpg: using PGP trust model
gpg: BAD signature from "Lifeboat Foundation <admin@lifeboat.com>"
gpg: binary signature, digest algorithm SHA1

I really don't want to find out my generated addresses are compromised after waiting days for a certain vanity address
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714002939
Hero Member
*
Offline Offline

Posts: 1714002939

View Profile Personal Message (Offline)

Ignore
1714002939
Reply with quote  #2

1714002939
Report to moderator
1714002939
Hero Member
*
Offline Offline

Posts: 1714002939

View Profile Personal Message (Offline)

Ignore
1714002939
Reply with quote  #2

1714002939
Report to moderator
1714002939
Hero Member
*
Offline Offline

Posts: 1714002939

View Profile Personal Message (Offline)

Ignore
1714002939
Reply with quote  #2

1714002939
Report to moderator
TheRealSteve
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500

FUN > ROI


View Profile
August 11, 2014, 07:53:45 PM
 #162

I may be doing this wrong, but can someone tell me why I got a Bad signature when verifying the latest windows 64 bit binaries with compressed key option for higher end graphics cards?
Likely because the signature is invalid for the file - the sig is from about a week before the zip's date.  Probably just from a small change in the README, but there's no way to verify that.  I haven't noticed any suspicious activity, but I tend to use bitcoin things offline just in case anyway.

You can always try making the changes yourself; there's a bunch of comments from the lifeboat foundation ( https://github.com/samr7/vanitygen/issues/19) in the samr7 repo, as well as some posts here; https://bitcointalk.org/index.php?topic=301068.msg3581899#msg3581899

The user lifeboat doesn't appear to have posted in a while - projects_coordination at lifeboat.com is probably the e-mail address most likely to get you to the people involved in the build and this thread.

e1ghtSpace
Legendary
*
Offline Offline

Activity: 1526
Merit: 1001


Crypto since 2014


View Profile WWW
August 11, 2014, 10:45:16 PM
 #163

I guess I should have downgraded to lower drivers because my card broke last month. It should be coming back from repairs any day now.
Dabs
Legendary
*
Offline Offline

Activity: 3416
Merit: 1912


The Concierge of Crypto


View Profile
August 18, 2014, 03:33:38 PM
 #164

Yes, it would be nice if this tool were updated to work with the latest GPUs, the AMD R9s, and the Nvidia ones too.

e1ghtSpace
Legendary
*
Offline Offline

Activity: 1526
Merit: 1001


Crypto since 2014


View Profile WWW
August 18, 2014, 08:39:22 PM
 #165

I guess I should have downgraded to lower drivers because my card broke last month. It should be coming back from repairs any day now.
My dad said it got repaired and now he can pick it up. Hopefully by this afternoon. Unfortunately I'm never going to be able to use this address miners because I don't want to risk it again

Unless they come out with newer driver support.
digitizing
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
August 25, 2014, 01:53:27 PM
 #166


Thanks for the help, but nope still doesn't work

C:\Users\Jon\DOWNLO~1\vanitygen-0.20-win>oclvanitygen -d 0 1g
Difficulty: 1353
Match idx: 0
CPU hash: 5652cdedc0ad1435005725b8eba25a6b752eb22a
GPU hash: 076d1c906ac7c506b844e81b3caf66189317adcb
Found delta: 7334337 Start delta: 1
[3.56 Mkey/s][total 7340032]
atch idx: 0
CPU hash: c6c089c29d003c26d659894dca0d598e985608ff
GPU hash: 077e6dd277e08cf110426055b2b03851cb17f00d
Found delta: 7335958 Start delta: 1
[4.94 Mkey/s][total 14680064]
For those who cant able to still run oclvanitygen, getting found delta, start delta.....
Just use driver uninstaller, i used this DDU from http://www.guru3d.com/files_details/display_driver_uninstaller_download.html.
unzip it in a folder in desktop, restart system in safe mode, run Display Driver Uninstaller.exe, select AMD-> Clean and restart.
It will remove all amd drivers & restart system.
Now just install 12.10 driver & everything works fine.
Did that, but still not work.
win 7 64bit msi r9 280x
this solution work for me
https://nastyfans.org/download/oclvanitygen.txt
with powercolor turbo duo R9 280x

user@digger:~/vanitygen$ env LD_LIBRARY_PATH=./sdklib ./oclvanitygen -D 0:0 -k -f btc50x -o hasil50
Next match difficulty: 233553567279407722661630663743129932735856896 (12 prefixes)
[17.14 Mkey/s][total 31344033792][Prob 0.0%][50% in 2.994143e+29y]

Code:
#!/bin/sh

# 2014-07-06
#
# This is the procedure to get oclvanitygen running with AMD Raedon 7xxx
# on a fresh install of Ubuntu 64-bit. (tested with Ubuntu 12.04 and 14.04)

# install tools, dependencies and driver
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) restricted"
sudo apt-get update
sudo apt-get install build-essential git libssl-dev libpcre3-dev opencl-headers fglrx-dev
sudo reboot

# get source and compile oclvanitygen
git clone https://github.com/samr7/vanitygen.git
cd vanitygen
wget https://nastyfans.org/download/patch-oclvanitygen-amd.diff
patch -p1 < patch-oclvanitygen-amd.diff
wget https://nastyfans.org/download/AMD-APP-SDK-v2.7-lib-lnx64.tar.gz
mkdir sdklib
tar -xzvf AMD-APP-SDK-v2.7-lib-lnx64.tar.gz -C sdklib
make oclvanitygen

# run oclvanitygen (from inside vanitygen directory)
env LD_LIBRARY_PATH=./sdklib ./oclvanitygen -D 0:0 -k 1Nasty
deepceleron
Legendary
*
Offline Offline

Activity: 1512
Merit: 1025



View Profile WWW
August 27, 2014, 02:00:43 AM
 #167

I guess I should have downgraded to lower drivers because my card broke last month. It should be coming back from repairs any day now.
My dad said it got repaired and now he can pick it up. Hopefully by this afternoon. Unfortunately I'm never going to be able to use this address miners because I don't want to risk it again

Unless they come out with newer driver support.

You aren't going to break video cards with drivers. You will break them by overheat though and lower the life running them at 100% usage (video cards run at a lower voltage and clock speed when they aren't doing work). The best advice is to keep them cool with lots of fans, and dust free by using case filters or regularly blowing or vacuuming the dust out of their heat sink fins.
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
September 08, 2014, 12:22:43 PM
 #168

Please help me! After I changed the directory, compiling started but still showing error. My graphics card is crashing too.



  ~~MZ~~

Loco
Newbie
*
Offline Offline

Activity: 30
Merit: 0


View Profile
October 03, 2014, 05:46:17 PM
 #169

I'm trying oclvanitygen on win7 x64 and running into a problem.

Here is what I'm doing:

C:\Users\User\Desktop\vanitygen-0.20-win>oclvanitygen -d 0 1Torza
Difficulty: 15318045009
Available OpenCL platforms:
0: [Advanced Micro Devices, Inc.] AMD Accelerated Parallel Processing
  0: [Advanced Micro Devices, Inc.] Barts
  1: [GenuineIntel]        Intel(R) Core(TM) i7-3770K CPU @ 3.50GHz
1: [Intel(R) Corporation] Intel(R) OpenCL
  0: [Intel(R) Corporation]        Intel(R) Core(TM) i7-3770K CPU @ 3.50GHz


I'm selecting -d 0 (have also tried -d0, without spaces) and get the same error every time. I have an AMD 6870 in my machine. What am I doing wrong?

Thanks!


EDIT: Doing oclvanitygen -D 0:0 did the trick!

how would be the comand line if you wanted to have more than 1 vga?
-D 0:0,1 ?
I have that doubt since i started here i have 2 7970 :p
TheRealSteve
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500

FUN > ROI


View Profile
October 03, 2014, 08:05:28 PM
 #170

how would be the comand line if you wanted to have more than 1 vga?
-D 0:0,1 ?
I have that doubt since i started here i have 2 7970 :p

-D requires a device string, you would be thinking of -d.  However, check if both devices are listed under the same platform, then you can just use the -p flag.

mishax1
Legendary
*
Offline Offline

Activity: 2898
Merit: 1017


View Profile
February 16, 2015, 01:19:38 PM
 #171

MSI 280X + windows 8.1
Uninstalled all ADM drivers, ran Driver Fusion, deleted all dll files manually, installed sdk 2.7, installed amd driver 12.10

still getting gpu hash   Embarrassed
thejaytiesto
Legendary
*
Offline Offline

Activity: 1358
Merit: 1014


View Profile
February 16, 2015, 02:14:27 PM
 #172

I've heard vanity addresses aren't as safe and secure as random addresses... whats the catch?
NeuroticFish
Legendary
*
Offline Offline

Activity: 3654
Merit: 6365


Looking for campaign manager? Contact icopress!


View Profile
February 16, 2015, 02:19:55 PM
 #173

I've heard vanity addresses aren't as safe and secure as random addresses... whats the catch?

Maybe it's related to the fact that most people that want vanity address use a 3rd party website to generate it... and some such websites may keep the private key for their own later use.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
Muhammed Zakir
Hero Member
*****
Offline Offline

Activity: 560
Merit: 506


I prefer Zakir over Muhammed when mentioning me!


View Profile WWW
February 16, 2015, 02:26:31 PM
 #174

I've heard vanity addresses aren't as safe and secure as random addresses... whats the catch?

It's safe if you create it within a secure computer not using any websites. For randomness, you can change your date and time.

   -MZ

korruptertyp
Newbie
*
Offline Offline

Activity: 41
Merit: 0


View Profile
December 10, 2016, 11:22:42 AM
 #175

Hey, Lifeboat!
This version of oclvanitygen is working really good with my 7xxx AMD on Windows 10. But I would like to run oclvanitygen on Ubuntu, to have a secure environment.
Is there any working oclvanitygen version for Linux, that works with OpenCL and an AMD Radeon 7xxx Graphic Card. Would be really nice.
(This is not just going to Lifeboat, if any other user knows a solution he/she is welcome to write it.)

Wish you all a great day Wink
manotroll
Sr. Member
****
Offline Offline

Activity: 305
Merit: 250


View Profile
August 04, 2018, 12:20:52 AM
 #176

How do I search for random private keys?
even if it is practically impossible to find I would like to test
using gpu
MICRO
Legendary
*
Offline Offline

Activity: 2464
Merit: 1037


CEO @ Stake.com and Primedice.com


View Profile WWW
May 20, 2019, 11:26:58 PM
 #177

Damn this topic is soo dead, i used to use this generator and now im looking for working version on Win 10

      ▄▄████████▄▄
   ▄████████████████▄
 ▄█████▀▀       ▀▀████     ████                  ████
▄████▀            ████    ████▌                 ▐████
█████           ▄████▀   ▐████                  ████▌    ▄▄
█████           ▀▀▀▀    ▄█████████▀            ▐████   ▄███▀
 █████▄           ▄▄███████████▀▀   ▄▄▄▄       ████  ▄███▀
   ▀█████▄▄       ▀████▀████▀     ▄████▀███   ▐███████▀▀        ▄▄▄▄
      ▀███████▄        ▐████    ▄████  ▐██▌   ███████        ▄███▀ ██▌
         ▀▀██████▄▄    ████    ▄███▀   ███   ▐███▌███      ▄███▀  ▄██▌
    ▄▄▄▄     ▀▀█████  ▐████    ████   ▄███   ████ ▐███    ▐████▄▄███▀
  █████▀▀      ▀████▌ ▐████▄▄██████▄▄█████▄▄█████  ▀███   ████
 ████▀          ████▌  ▀████▀▀  ▀████▀  ▀██▀ ███▀   ▀███  ▀████▄▄▄▄██
████▌          █████        ▄▄▄▄   ▄▄▄▄▄▄  ▄ ▄▄ ▄ ▄▄ ▀███   ▀▀████▀▀
████▄       ▄▄████▀       ▄█▀   ▀ ▄█▀  ▀█▄ ██▀▀██▀▀██▀███▄▄      ▄▄██
 ██████████████▀▀  ▄███▄  ██▄     ██▄  ▄██ ██  ██  ██   ▀▀█████████▀▀
   ▀██████▀▀▀      ▀███▀   ▀████▀  ▀████▀  ██  ██  ██



▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀▐▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄█▀▀▀█████████▀▀▀█▄
▄█▀    ▄▀█████▀     ▀█▄
▄█▄    █        ▀▄   ███▄
▄████▀▀▀▀▄       ▄▀▀▀▀▀███▄
████      ▀▄▄▄▄▄▀       ███
███     ▄▄███████▄▄     ▄▀█
█  ▀▄ ▄▀ ▀███████▀ ▀▄ ▄▀  █
▀█   █     ▀███▀     ▀▄  █▀
▀█▄▄█▄      █        █▄█▀
▀█████▄ ▄▀▀ ▀▀▄▄ ▄▄███▀
▀█████        ████▀
▀▀█▄▄▄▄▄▄▄█▀▀



● OVER 1000 GAMES
● DAILY RACES AND BONUSES
● RAKEBACK & VIP RANKS
● 24/7 LIVE SUPPORT
malevolent
can into space
Legendary
*
Offline Offline

Activity: 3472
Merit: 1721



View Profile
May 21, 2019, 05:12:06 AM
Merited by OgNasty (1), Herbert2020 (1)
 #178

Damn this topic is soo dead, i used to use this generator and now im looking for working version on Win 10

"VanitySearch (Yet another address prefix finder)":

https://bitcointalk.org/index.php?topic=5112311.0

Signature space available for rent.
MICRO
Legendary
*
Offline Offline

Activity: 2464
Merit: 1037


CEO @ Stake.com and Primedice.com


View Profile WWW
May 21, 2019, 11:59:16 AM
 #179

Damn this topic is soo dead, i used to use this generator and now im looking for working version on Win 10

"VanitySearch (Yet another address prefix finder)":

https://bitcointalk.org/index.php?topic=5112311.0

Thank you bro.

      ▄▄████████▄▄
   ▄████████████████▄
 ▄█████▀▀       ▀▀████     ████                  ████
▄████▀            ████    ████▌                 ▐████
█████           ▄████▀   ▐████                  ████▌    ▄▄
█████           ▀▀▀▀    ▄█████████▀            ▐████   ▄███▀
 █████▄           ▄▄███████████▀▀   ▄▄▄▄       ████  ▄███▀
   ▀█████▄▄       ▀████▀████▀     ▄████▀███   ▐███████▀▀        ▄▄▄▄
      ▀███████▄        ▐████    ▄████  ▐██▌   ███████        ▄███▀ ██▌
         ▀▀██████▄▄    ████    ▄███▀   ███   ▐███▌███      ▄███▀  ▄██▌
    ▄▄▄▄     ▀▀█████  ▐████    ████   ▄███   ████ ▐███    ▐████▄▄███▀
  █████▀▀      ▀████▌ ▐████▄▄██████▄▄█████▄▄█████  ▀███   ████
 ████▀          ████▌  ▀████▀▀  ▀████▀  ▀██▀ ███▀   ▀███  ▀████▄▄▄▄██
████▌          █████        ▄▄▄▄   ▄▄▄▄▄▄  ▄ ▄▄ ▄ ▄▄ ▀███   ▀▀████▀▀
████▄       ▄▄████▀       ▄█▀   ▀ ▄█▀  ▀█▄ ██▀▀██▀▀██▀███▄▄      ▄▄██
 ██████████████▀▀  ▄███▄  ██▄     ██▄  ▄██ ██  ██  ██   ▀▀█████████▀▀
   ▀██████▀▀▀      ▀███▀   ▀████▀  ▀████▀  ██  ██  ██



▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀▐▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄█▀▀▀█████████▀▀▀█▄
▄█▀    ▄▀█████▀     ▀█▄
▄█▄    █        ▀▄   ███▄
▄████▀▀▀▀▄       ▄▀▀▀▀▀███▄
████      ▀▄▄▄▄▄▀       ███
███     ▄▄███████▄▄     ▄▀█
█  ▀▄ ▄▀ ▀███████▀ ▀▄ ▄▀  █
▀█   █     ▀███▀     ▀▄  █▀
▀█▄▄█▄      █        █▄█▀
▀█████▄ ▄▀▀ ▀▀▄▄ ▄▄███▀
▀█████        ████▀
▀▀█▄▄▄▄▄▄▄█▀▀



● OVER 1000 GAMES
● DAILY RACES AND BONUSES
● RAKEBACK & VIP RANKS
● 24/7 LIVE SUPPORT
Pages: « 1 2 3 4 5 6 7 8 [9]  All
  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!