- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
58 Posted Topics
Re: The problem is that the longer the lines the more the program needs to do. | |
Re: Autopython is almost right. Correct me if I'm wrong: no matter how long the code is the value is always the same length. If so this is called signing and it uses a hash function to shorten the code and then uses a public key cipher signing method to encrypt … | |
![]() | |
Re: What language do you know? And what sort of programming are you interested in eg. graphics, compiler, gui... | |
Re: Suggestion 1: use a for loop Suggestion 2: learn to program | |
Re: That would be the best way. And its declared in the same way as any other array | |
Re: Why would they want to decompile it anyway? | |
Re: Tip: Pick a hashing algorithm such as MD5, SHA-2, Tiger, etc and look it up | |
| |
I am having a slight problem implementing this code. What I need to do is take a list of 16 unsigned characters and permute the bits according to IPTable. 0 in IPTable refers to bit 0, 1 refers to bit 1, etc. Here is my code which isn't working. [code=c] … | |
Re: It isn't vegaseat. Aiban, this means you will probably need to change the code or install ttk | |
Re: It really depends on the code that will be making multiple comparisons | |
Re: I have experience with ECC. What exactly is the problem with ECDSA? | |
Re: You can use the system function to run the compiler and then run the compiled code | |
Re: I'd just do a bitwise shift left 12 then a bitwise shift right 12 | |
Re: If by [QUOTE]software lock itself[/QUOTE] you mean just the program that you wrote then yes. If by [QUOTE]software lock itself[/QUOTE] you mean all programs on the computer then yes. But if its the second one don't do that as thats rude as hell | |
Re: [QUOTE]SIZE is a catholic constant[/QUOTE] good choice of words PBIRBAS's teacher | |
| |
Re: Do you know what object oriented programming is? If so then c++ is c with object oriented capability. There are some other differences but that is the main one. If you don't know what object oriented programming is then look it up or ask | |
Re: As far as I'm aware you can't tell as I believe they are both just translated to one type (e.g. hexadecimal or decimal) during compilation. I am not 100 percent sure of this so maybe you should look in a tutorial or book. | |
Re: Try, instead of a for loop, using [ICODE]while (ibalance != 0)[/ICODE] Also, just calculate the interest, subtract the 500 from ibalance, and increment the month during the while loop. Then when you want to find out how long it took change the number of months into months and years | |
Re: Try using partcopy instead. Take a look at this website as it shows you how to do that [url]http://www.brokenthorn.com/Resources/OSDev3.html[/url]. Partcopy is available at [url]http://www.brokenthorn.com/Resources/Programs/pcopy02.zip[/url] | |
Re: In the function saveEvent: the line [ICODE]self.transferArea.SetValue(target.read()) [/ICODE] should be [ICODE]text = self.transferArea.GetValue() [/ICODE] and then transfer the text to the file | |
Re: You have to get the key and then multiply the key by the text. The decipher key is the inverse of the encipher key in mod whatever | |
Re: Hey can you post some of the code. I know a bit about cryptology | |
Re: You can get a disassembler and disassemble it and then examine the assembly code that was output. You can then examine the assembly code of the program and look for a certain compilers footprint. Good luck :P | |
Re: Create a new file called calc.py. Put the calc function in it and then in your main file import calc.py | |
Re: I would take a look at pyhook and try to use that to moniter if a is being typed and then block that and send the new string instead. If your running windows then this can be done with the win32 apis | |
Re: Tkinter is very out of date. My advice would be qt which allows you to do use xml | |
Re: You can use the functions in process.h try taking a look at them | |
Re: Well what language are you using? | |
![]() | Re: Threading won't help to make a keylogger. Threading is simply running multiple processes at the same time. There is probably another keylogging library out there but pyhook is better. You can also write one on your own if you know c++ |
Re: [url]http://en.wikipedia.org/wiki/Booth%27s_multiplication_algorithm[/url] | |
![]() | Re: pyHook is easier. Threading is much different. For an explanation of threading see [url]http://www.devshed.com/c/a/Python/Basic-Threading-in-Python/[/url] ![]() |
Re: Add this line [icode] display.see(display.size()) [/icode] after [icode] scrollbar.config( command = display.yview ) [/icode] | |
Re: You can use a gui toolkit. Qt can do this. Check it out at [url]http://www.qtsoftware.com/[/url] |
The End.