https://bitcointalk.org/index.php?topic=25804.0https://github.com/samr7/vanitygenhttps://bitcointalk.org/index.php?topic=202146.0https://github.com/litecoin-project/litecoin/blob/master-0.8/src/base58.h#L275" PUBKEY_ADDRESS = 48, // Litecoin addresses start with L"
you can write a quick file to start the vanitygen in windows..
create a notepad text file call it
runvanitygen.bat
put this in it
vanitygen -i -k -o complete.txt -X 48 Litecoin
will search for a pattern Litecoin
-i means case insensitive
-k means it will keep finding more after it finds one match
-X 48 is the pubkey address number found in the base58 file from litecoin code, since litecoin is widely spread you can use just -L instead
-o creates and outputs the result(s) to a txt file
this will get you a matched private key and an address. it will not show the other various key datas.
\you can change Litecoin to whatever it just needs to start with a capital L and cant contain uppercase i, lowercase L uppercase o, nor number zero.
*apologies im sure this isnt exactly what your looking for, but if you want to create addresses and hold the keys this is how. if you want to know the WIF compressed uncompressed etc from a private key then this isnt helpful