Bitcoin Forum
May 22, 2024, 04:44:53 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 [1175] 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 ... 1628 »
  Print  
Author Topic: [XC][XCurrency] Decentralised Trustless Privacy Platform / Encrypted XChat / Pos  (Read 1483644 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Propulsion
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


The Buck Stops Here.


View Profile
August 31, 2014, 05:14:49 AM
 #23481

On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

You know there is a vanity gen creator that works even better. This was made for Darkcoin but seeing how both use the same address format, it should work.

https://github.com/propulsions/DarkVanityGen
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 06:29:10 AM
 #23482

On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

You know there is a vanity gen creator that works even better. This was made for Darkcoin but seeing how both use the same address format, it should work.

https://github.com/propulsions/DarkVanityGen

Oooh nice.  Thanks!   I will definitely take a look.

kleeii
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
August 31, 2014, 07:01:55 AM
 #23483

On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

thats amazing
so valuable address
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 08:44:51 AM
 #23484

On another note, I found a XC address that began with xchat!  Wink   XCHaTxgu3cMtwokhSh2gsBBN5wUT77F6EK

Took over a million searches....

How?! Grin Did you generate the addresses while result | egrep -i '^xchat'?

I modded the BIP38 paper wallet generator that Laredo created to find match based on some "vanity starting" parameters and it looped till it found it.   It's really a rough hack job with no UI update for now....  I have to break into it to find out how many attempt it was at. Wink

My requirement was that it had to be BIP38, but of course... I really didn't have to really do that now since I know how to encrypt an existing private key using BIP38 now....   So, even a normal address creation would have sufficed....

You know there is a vanity gen creator that works even better. This was made for Darkcoin but seeing how both use the same address format, it should work.

https://github.com/propulsions/DarkVanityGen

Darkcoin prefix is 0xCC while XC is 0xCB.   Network version is 0x4C for DRK and 0x4B for XC.  Where can I change this prefix in the DarkVanityGen source?

Edit: I think I found it.   I need to change the addrtype and privtype in oclvanitygen.c right?  I added this to the beginning of that parameter processing:

Code:
	while ((opt = getopt(argc, argv,
     "vqik1xNTXC:eE:p:P:d:w:t:g:b:VSh?f:o:s:D:")) != -1) {
switch (opt) {
case 'C':
addrtype=75;
privtype=205;
break;

Let's see if it will work....

braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
August 31, 2014, 09:17:04 AM
 #23485

I've tried with the original vanitygen a while ago, but it screwed up the public key (it was way to long) and it didn't work with xchat
I would like to test something...

I made myself a vanity adress for xchat
would someone please try to contact me over xchat?

adress: XCHATsLztdvJxb2BkrgVuoq7uoC73u6ghj
pubkey: Ro4rYufnJy7RYFnuJBaD1iz5Rrr8o77fyKbcnkAbqC57JCS148WVMabshBjHd1JsZGoJ2JZtj6LYtfP e8bavoY51

(I've noticed that my pub key is really long, that's why I want to test this)


If it works I'll explain it in a tutorial

If you got it working, defenitly let me now Cheesy
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 09:29:23 AM
 #23486

I've tried with the original vanitygen a while ago, but it screwed up the public key (it was way to long) and it didn't work with xchat
I would like to test something...

I made myself a vanity adress for xchat
would someone please try to contact me over xchat?

adress: XCHATsLztdvJxb2BkrgVuoq7uoC73u6ghj
pubkey: Ro4rYufnJy7RYFnuJBaD1iz5Rrr8o77fyKbcnkAbqC57JCS148WVMabshBjHd1JsZGoJ2JZtj6LYtfP e8bavoY51

(I've noticed that my pub key is really long, that's why I want to test this)


If it works I'll explain it in a tutorial

If you got it working, defenitly let me now Cheesy

Did you modify the addrtype and privtype too?

braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
August 31, 2014, 09:38:33 AM
 #23487

in the original vanitygen you have an option parameter

it is started like "vanitygen64.exe -X 75 XCHAT"

(75 is the decimal of the hexadecimal 4b)

Code:
Vanitygen 0.20 (OpenSSL 1.0.1c 10 May 2012)
Usage: vanitygen64 [-vqrikNT] [-t <threads>] [-f <filename>|-] [<pattern>...]
Generates a bitcoin receiving address matching <pattern>, and outputs the
address and associated private key.  The private key may be stored in a safe
location or imported into a bitcoin client to spend any balance received on
the address.
By default, <pattern> is interpreted as an exact prefix.

Options:
-v            Verbose output
-q            Quiet output
-r            Use regular expression match instead of prefix
              (Feasibility of expression is not checked)
-i            Case-insensitive prefix search
-k            Keep pattern and continue search after finding a match
-N            Generate namecoin address
-T            Generate bitcoin testnet address
-X <version>  Generate address with the given version
-F <format>   Generate address with the given format (pubkey or script)
-P <pubkey>   Specify base public key for piecewise key generation
-e            Encrypt private keys, prompt for password
-E <password> Encrypt private keys with <password> (UNSAFE)
-t <threads>  Set number of worker threads (Default: number of CPUs)
-f <file>     File containing list of patterns, one per line
              (Use "-" as the file name for stdin)
-o <file>     Write pattern matches to <file>
-s <file>     Seed random number generator from <file>

C:\vanitygen>
braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
August 31, 2014, 09:43:50 AM
Last edit: August 31, 2014, 09:58:38 AM by braxx
 #23488

Hey... there is the option -P

what would that give?

edit: ... nothing... invalid base public key...
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 10:03:49 AM
 #23489

Hey... there is the option -P

what would that give?

edit: ... nothing... invalid base public key...

Think you need to pass the 75 to -X instead of -P.

Can you also pass in the prefix?  Cause the prefix also needs to be changed to 0xCB.

Did you compile vanitygen yourself or a precompiled version?

braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
August 31, 2014, 10:07:58 AM
 #23490

precompiled

I tried to use -P (with a base pub key.. wich I used from my adres) and than -X XCHAT

and it said...  invalid base pub key


I can't find much info on the issue  Undecided
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 10:31:54 AM
 #23491

precompiled

I tried to use -P (with a base pub key.. wich I used from my adres) and than -X XCHAT

and it said...  invalid base pub key


I can't find much info on the issue  Undecided

Trying to compile my own now on windows.   Pain in the butt.   Getting errors and stuff.   Will read through the vanitygen thread to see which library people are using now since I don't have vs2010 installed as they had originally.

marcoman22
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
August 31, 2014, 11:09:11 AM
 #23492

precompiled

I tried to use -P (with a base pub key.. wich I used from my adres) and than -X XCHAT

and it said...  invalid base pub key


I can't find much info on the issue  Undecided

still facing errors.
braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
August 31, 2014, 11:27:55 AM
 #23493

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.
braxx
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
August 31, 2014, 11:36:21 AM
 #23494

precompiled

I tried to use -P (with a base pub key.. wich I used from my adres) and than -X XCHAT

and it said...  invalid base pub key


I can't find much info on the issue  Undecided
found something o other forum:
Quote
when using the -P option, vanitygen wants to know the public key in hex format after the -P, and specifying only the bitcoin address is not sufficient.

Is there any way to generate the public key in hex format from the bitcoin address alone?

going off to my work now...
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 11:49:32 AM
 #23495

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.

Actually....   This works...

vanitygen -X 75 XChat

and it's blazing fast even without using the opencl version since it doesn't work for me (R9 290)



Teka (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
August 31, 2014, 11:50:52 AM
 #23496

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.

Actually....   This works...

vanitygen -X 75 XChat

and it's blazing fast even without using the opencl version since it doesn't work for me (R9 290)




Ok thanks, I need to try this.
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 11:53:09 AM
 #23497

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.

Actually....   This works...

vanitygen -X 75 XChat

and it's blazing fast even without using the opencl version since it doesn't work for me (R9 290)




Ok thanks, I need to try this.

You should look for one that say XCTeka....   I am looking for one that is XCGretz... now Wink

Also... use -t to increase the # of workers to make it go faster.

Teka (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
August 31, 2014, 11:58:32 AM
 #23498

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.

Actually....   This works...

vanitygen -X 75 XChat

and it's blazing fast even without using the opencl version since it doesn't work for me (R9 290)




Ok thanks, I need to try this.

You should look for one that say XCTeka....   I am looking for one that is XCGretz... now Wink

Also... use -t to increase the # of workers to make it go faster.

I've used the software before (with -t 16 Wink ) but never for altcoins.
CryptoGretzky
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
August 31, 2014, 11:59:20 AM
 #23499

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.

Actually....   This works...

vanitygen -X 75 XChat

and it's blazing fast even without using the opencl version since it doesn't work for me (R9 290)




Ok thanks, I need to try this.

You should look for one that say XCTeka....   I am looking for one that is XCGretz... now Wink

Also... use -t to increase the # of workers to make it go faster.

I've used the software before (with -t 16 Wink ) but never for altcoins.

I tried -t 24 seems to work for me, then I tried 1024 and it kinda locked up for some reason when it gets to 50%....

Teka (OP)
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
August 31, 2014, 12:01:17 PM
 #23500

I've used the vanitygen many times with other coins...
but this time it conflicts with the public key...

I guess we could use cryptogretsky's way with the paper wallet gen.

Actually....   This works...

vanitygen -X 75 XChat

and it's blazing fast even without using the opencl version since it doesn't work for me (R9 290)




Ok thanks, I need to try this.

You should look for one that say XCTeka....   I am looking for one that is XCGretz... now Wink

Also... use -t to increase the # of workers to make it go faster.

I've used the software before (with -t 16 Wink ) but never for altcoins.

I tried -t 24 seems to work for me, then I tried 1024 and it kinda locked up for some reason when it gets to 50%....

I thought it was one per thread?
Pages: « 1 ... 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 [1175] 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 ... 1628 »
  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!