Pages:
Author

Topic: Vanitygen: Vanity bitcoin address generator/miner [v0.22] - page 11. (Read 1152778 times)

legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
is it possible to run the program and work with the GPU instead of the CPU?
Yes, use oclvanitygen.
legendary
Activity: 3430
Merit: 2663
Escrow Service
is it possible to run the program and work with the GPU instead of the CPU?
donator
Activity: 4732
Merit: 4240
Leading Crypto Sports Betting & Casino Platform
this tool is awesome . i hope next version have more functions or update to make file export have smaller size

we can replace

Pattern: 1
Address: 1xxxxxxxxxxxxxxxxxxx
Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

by

Pattern: 1  ,Address: 1xxxxxxxxxxxxxxxxxxx ,Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

on 1 line


or  more function
read file text (mutil line) and convert  to bitcoin address and private key (passphrases to generate like brainwallet)

thank you so much

Vanitygen hasn’t been updated in a long time. You’d need to find someone to make a software branch that includes these changes for you, or write a simple script to do it with the vanitygen output file.
full member
Activity: 386
Merit: 100
this tool is awesome . i hope next version have more functions or update to make file export have smaller size

we can replace

Pattern: 1
Address: 1xxxxxxxxxxxxxxxxxxx
Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

by

Pattern: 1  ,Address: 1xxxxxxxxxxxxxxxxxxx ,Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

on 1 line


or  more function
read file text (mutil line) and convert  to bitcoin address and private key (passphrases to generate like brainwallet)

thank you so much
newbie
Activity: 5
Merit: 0
you da man thx, @LoyceV

ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R,  c, b, h, j, k, m, 4, 5, 6

it can not use a lowercase, or B or 2,  iwant it to make address based on my input
So you want the entire address to meet your requirements? That's going to be very difficult or more likely just impossible.
I'd say try this: make a long list of prefixes:
Code:
1L33TAAA
1L33TAAM
1L33TAAN
1L33TAAH
.......
.......
Make this list 4913 or 83521 prefixes long, so you include lengths 1L33TAAA or 1L33TAAAA.
Then, use this list as input for oclvanitygen (much faster than just vanitygen), and see how long it takes you to get some results. Each additional character is going to take you more than 3 times longer.
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R,  c, b, h, j, k, m, 4, 5, 6

it can not use a lowercase, or B or 2,  iwant it to make address based on my input
So you want the entire address to meet your requirements? That's going to be very difficult or more likely just impossible.
I'd say try this: make a long list of prefixes:
Code:
1L33TAAA
1L33TAAM
1L33TAAN
1L33TAAH
.......
.......
Make this list 4913 or 83521 prefixes long, so you include lengths 1L33TAAA or 1L33TAAAA.
Then, use this list as input for oclvanitygen (much faster than just vanitygen), and see how long it takes you to get some results. Each additional character is going to take you more than 3 times longer.
newbie
Activity: 5
Merit: 0




Thank you,  , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters  a combination of lowercase and uppercase that i choose /. fo example ABSD pqrs and number 2-5.

is that doable?

thank you

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase

thanks for your help, don know it this is doable with regex, i couldn't figure it out.



I'd help you out but I have no idea what you mean.

Try to understand what I wrote, and apply what you want :

regex : ^1[a-z]{4}.*$

example match : 1lmnoxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z]{2}.*$

example match : 1IJxxxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z0-9]{4}.*Z$

example match : 1A2B1xxxxxxxxxxxxxxxxxxxxZ

etc...


thanks

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase
Can you give an example of the prefix you want? Would it be for example 1689ABDEFghtwy or the same characters in any different order?

ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R,  c, b, h, j, k, m, 4, 5, 6

it can not use a lowercase, or B or 2,  iwant it to make address based on my input

thank you
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase
Can you give an example of the prefix you want? Would it be for example 1689ABDEFghtwy or the same characters in any different order?
sr. member
Activity: 910
Merit: 452
Check your coin privilege



Thank you,  , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters  a combination of lowercase and uppercase that i choose /. fo example ABSD pqrs and number 2-5.

is that doable?

thank you

what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase

thanks for your help, don know it this is doable with regex, i couldn't figure it out.



I'd help you out but I have no idea what you mean.

Try to understand what I wrote, and apply what you want :

regex : ^1[a-z]{4}.*$

example match : 1lmnoxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z]{2}.*$

example match : 1IJxxxxxxxxxxxxxxxxxxxx

regex : ^1[A-Z0-9]{4}.*Z$

example match : 1A2B1xxxxxxxxxxxxxxxxxxxxZ

etc...
newbie
Activity: 5
Merit: 0
what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689

letters > ABDEF uppercase ghtwy lowercase

thanks for your help, don know it this is doable with regex, i couldn't figure it out.

newbie
Activity: 5
Merit: 0

use only capital letters, exclude numbers, exclude xyz include 234
only use letters ABCDEFGJHK and number 23456 etc...

thank you

I think vanitygen works with regex.

vanitygen -v -r ^1[A-Z0-9]{3}.*$

Quick explanation :  ^1[A-Z0-9]{3}.*$

^: Start of regex line
1 : All btc addresses start with 1
[A-Z0-9] : only capital letters, and numbers
{3} : 3 times
. : any character
* : any number of times
$ : end of regex line

You can check more explanations about how to use regex expressions here : https://regex101.com/





Thank you,  , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters  a combination of lowercase and uppercase that i choose /. fo example ABSD pqrs and number 2-5.

is that doable?

thank you
sr. member
Activity: 910
Merit: 452
Check your coin privilege

use only capital letters, exclude numbers, exclude xyz include 234
only use letters ABCDEFGJHK and number 23456 etc...

thank you

I think vanitygen works with regex.

vanitygen -v -r ^1[A-Z0-9]{3}.*$

Quick explanation :  ^1[A-Z0-9]{3}.*$

^: Start of regex line
1 : All btc addresses start with 1
[A-Z0-9] : only capital letters, and numbers
{3} : 3 times
. : any character
* : any number of times
$ : end of regex line

You can check more explanations about how to use regex expressions here : https://regex101.com/
newbie
Activity: 5
Merit: 0
Hi There

is possible to exclude, include certian letters or numbers, when generating the addresses. ?

ex, Aprat the Prefix 1XYZ, when generating the public address.

use only capital letters, exclude numbers, exclude xyz include 234
only use letters ABCDEFGJHK and number 23456 etc...

thank you
legendary
Activity: 3808
Merit: 7912
i want to print the result on 1 line , address and Privkey on one line

normal result
Quote
Address: 1xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

i want result
Quote
1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx , 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

save data file is minimum

Quote
https://github.com/samr7/vanitygen/blob/master/pattern.c

line 576

if (!vcp->vc_result_file || (vcp->vc_verbose > 0)) {
      if (isscript)
         printf("P2SHAddress: %s\n", addr2_buf);
      printf("Address: %s\n"
             "%s: %s\n",
             addr_buf, keytype, privkey_buf);
   }


what do i need to  do  ?


 remove/replace the newline character which is

Code:
\n

full member
Activity: 386
Merit: 100
i want to print the result on 1 line , address and Privkey on one line

normal result
Quote
Address: 1xxxxxxxxxxxxxxxxxxxxxxxxxxxx
Privkey: 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

i want result
Quote
1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx , 5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

save data file is minimum

Quote
https://github.com/samr7/vanitygen/blob/master/pattern.c

line 576

if (!vcp->vc_result_file || (vcp->vc_verbose > 0)) {
      if (isscript)
         printf("P2SHAddress: %s\n", addr2_buf);
      printf("Address: %s\n"
             "%s: %s\n",
             addr_buf, keytype, privkey_buf);
   }


what do i need to  do  ?
newbie
Activity: 54
Merit: 0
Please help me how to use this

-s   Seed random number generator from

oclvanitygen.exe or vanitygen.exe

-------------------

can i use my dictionary 2gb hash , SHA256 on check vanitygen (not random symbol)

if you can, how?


-------------------

is it possible to take 1 hash and add +1 symbols  to it ?
(vanitygen)
legendary
Activity: 1862
Merit: 1011
Reverse engineer from time to time
Just wanted to give a heads up that I went up and patched vanitygen to compile against latest OpenSSL, whose interface has changed in the last few years. I also found that the opencl kernel works just fine without any changes on modern GTX 10XX cards. I personally get 60+MKey/s.

https://github.com/weallknowthis/vanitygen/tree/dev
legendary
Activity: 1862
Merit: 1011
Reverse engineer from time to time
is there any forecast to fix compatibility with new cards?
Only if there is incentive to do so, but...and this is a big but. The original author of vanitygen has not been seen for years, so even if there is someone out there who could, you would have to use a fork of this software.

However, if you can tell me what the issue is with newer cards, maybe we can think of a solution. OpenCL not working? Errors, or slow generation?
sr. member
Activity: 305
Merit: 250
is there any forecast to fix compatibility with new cards?
legendary
Activity: 3808
Merit: 7912
Is it also possible to genereate addresses that are not starting with 1?

AFAIK no, you can't do that with this software. Vanitygen only supports legacy address which start with 1.
But you might want to check this out:
- https://bitcoin.stackexchange.com/questions/57789/vanity-address-generation-for-segwit
- https://github.com/kristapsk/segvan
- https://github.com/nym-zone/segvan

 If you use the -X parameter with Vanitygen you can create addresses for many different coins.

Decimal_version  Leading symbol  Address length
0
1
up to 34
1
Q-Z, a-k, m-o
33
2
o-z, 2
33 or 34
3
2
34
4
2 or 3
34
5-6
3
34
7
3 or 4
34
8
4
34
9
4 or 5
34
10-11
5
34
12
5 or 6
34
13
6
34
14
6 or 7
34
15-16
7
34
17
7 or 8
34
18
8
34
19
8 or 9
34
20-21
9
34
22
9 or A
34
23
A
34
24
A or B
34
25-26
B
34
27
B or C
34
28
C
34
29
C or D
34
30-31
D
34
32
D or E
34
33
E
34
34
E or F
34
35-36
F
34
37
F or G
34
38
G
34
39
G or H
34
40-41
H
34
42
H or J
34
43
J
34
44
J or K
34
45-46
K
34
47
K or L
34
48
L
34
49
L or M
34
50-51
M
34
52
M or N
34
53
N
34
54
N or P
34
55-56
P
34
57
P or Q
34
58
Q
34
59
Q or R
34
60-61
R
34
62
R or S
34
63
S
34
64
S or T
34
65-66
T
34
67
T or U
34
68
U
34
69
U or V
34
70-71
V
34
72
V or W
34
73
W
34
74
W or X
34
75-76
X
34
77
X or Y
34
78
Y
34
79
Y or Z
34
80-81
Z
34
82
Z or a
34
83
a
34
84
a or b
34
85
b
34
86
b or c
34
87-88
c
34
89
c or d
34
90
d
34
91
d or e
34
92-93
e
34
94
e or f
34
95
f
34
96
f or g
34
97-98
g
34
99
g or h
34
100
h
34
101
h or i
34
102-103
i
34
104
i or j
34
105
j
34
106
j or k
34
107-108
k
34
109
k or m
34
110
m
34
111
m or n
34
112-113
n
34
114
n or o
34
115
o
34
116
o or p
34
117-118
p
34
119
p or q
34
120
q
34
121
q or r
34
122-123
r
34
124
r or s
34
125
s
34
126
s or t
34
127-128
t
34
129
t or u
34
130
u
34
131
u or v
34
132-133
v
34
134
v or w
34
135
w
34
136
w or x
34
137-138
x
34
139
x or y
34
140
y
34
141
y or z
34
142-143
z
34
144
z or 2
34 or 35
145-255
2
35

N.B. table taken from https://en.bitcoin.it/wiki/List_of_address_prefixes
Pages:
Jump to: