a way to encode information to make the information unintelligible.

learn more… | top users | synonyms

0
votes
3answers
61 views

Data Masking in SAS: Scrambling Sensitive observations at character level

I'm working with client data in SAS with sensitive customer identification information. The challenge is to mask the field in such a way that it remains numeric/alphabetic/alphanumeric. I found a way ...
2
votes
2answers
49 views

Storing scrambled Social Security numbers

I need to store a social security number in the unique scrambled state... The reason: I would require social numbers, but I do not want to store them open in case if database gets compromised. I ...
0
votes
2answers
51 views

Scrambling an array in idl

I was wondering if there is a module in idl that one can use to scramble an array of floating point numbers. I tried using scramble.pro but the problem is that it returns integers, and if I try to use ...
2
votes
2answers
69 views

Using Ruby to replace numeric data using simple hashmap

I'm trying to come up with a simple way using Ruby to scramble (or mask) some numeric data, in order to create a dummy data set from live data. I want to keep the data as close to the original format ...
0
votes
1answer
119 views

Scrambling lines from file in Python

I have a file containing large strings, and I need to scramble each and every one of them. This is a portion of my code which does the scrambling. for line in filein: zzz = ...
0
votes
1answer
132 views

Sketchup crashes with.rbs scrambled plugin

I have a plugin for Sketchup that is used by clients, and because this I need to Scrambler it to create a .rbs file. When the file is .rb, works perfectly, but when I scramble it to .rbs, the plugin ...
0
votes
2answers
171 views

text gets scrambled when inserted through .html() jquery method

In a web page I'm doing there's a table where by clicking on each row you can modify it. This is done by substituting the content of each cell with an input field containing the relative value. In ...
1
vote
3answers
239 views

Simple Python code to scramble descramble file contents

I'm looking for a small easy program to scramble and descramble a file's contents. The file is a zip file so it might contain any characters. Was thinking something like two's complement or something, ...
1
vote
1answer
174 views

Java Programming- Allowing blank lines from Scanner

I am trying to get my Java program to accept blank lines of text as input, as well as displaying them in the final output. Basically I have made a word scrambling program, that is supposed to take in ...
0
votes
2answers
153 views

In python how can I scramble a files name and content and why did my attempt produce weird results?

I am trying to make a script that can scramble a folders files and the files content on a windows machine. This was my first attempt at trying to scramble file names in a folder. I know performance ...
1
vote
2answers
80 views

Exchanging the internal letters of words

How can you implement the "old" trick of scrambling the internal letters of words? For those of you who don't know it Wikipedia describes it well. As mentioned in the comment to this question this ...
1
vote
1answer
215 views

PHP function to scramble javascript code? [duplicate]

Possible Duplicate: How can I obfuscate JavaScript? I was wondering if there's a way to just move javascript around. So let's say I have a javascript file. I like to be able to have the PHP ...
2
votes
1answer
277 views

Puzzle Solving: Finding All Words Within a Larger Word in PHP

So I have a database of words between 3 and 20 characters long. I want to code something in PHP that finds all of the smaller words that are contained within a larger word. For example, in the word ...
1
vote
3answers
292 views

Verify sqlite database before import into android app

I have an app in which I have added Export/Import DB functionality... I want to do two things: 1) When exporting: Scramble the exported database so that normal folks (I know that some people can ...
0
votes
1answer
824 views

How to decode scrambled character encoding: è as \xc3\x83\xc2\x85\xc3\x82\xc2\xa0

I have data in CSV format that has been seriously scrambled character encoding wise, likely going back and forth between different software applications (LibreOffice Calc, Microsoft, Excel, Google ...
1
vote
3answers
365 views

Are there any algorithms for scrambling a word?

I am trying to make a word scrambler and am wondering if there are any algorithms I should use or if I should just build it from scratch. Any pointers would be helpful!
0
votes
1answer
269 views

sencha touch / phonegap :: looking for code-scrambler

Does anybody have a good tip for a javascript code scrambler which runs good on sencha touch and phonegap? thnx!
0
votes
1answer
363 views

large image rotation in corona

i have an image with size 1162 x 16 which i want to rotate on the touch "moved phase" event , the problem is that when the image rotates it gets scrambled "pixelated", although it is not getting ...
0
votes
0answers
486 views

How to scramble words in C program? [closed]

How can to make a program that will create scrambled words by circularly rotating the middle characters of each word by 1 character? Example: Type a Phrase: According to a research at an English ...
0
votes
5answers
435 views

How can I scramble a word with a factor?

I would like to scramble a word with a factor. The bigger the factor is, the more scrambled the word will become. For example, the word "paragraphs" with factor of 1.00 would become "paaprahrgs", and ...
1
vote
0answers
310 views

DVB-CSA-1 vs DVB-CSA-2

I need some help from mpeg2-ts DVB and broadcasting experts. Can someone tell me what is the difference between those algorithms in common.
4
votes
3answers
291 views

Scramble a floating point number?

I need a repeatable pseudo-random function from floats in [0,1] to floats in [0,1]. I.e. given a 32-bit IEEE float, return a "different" one (as random as possible, given the 24 bits of mantissa). ...
1
vote
4answers
2k views

Are there any way to scramble strings in python?

I'm writing a code and I need to scramble the letters of strings from a list in python. For instance I have a list of strings like: l = ['foo', 'biology', 'sequence'] and I want something like ...
1
vote
6answers
524 views

Best way to replace string with random values exact length c#

I'm looking to replace a string with random values - and keep the same length. However, I'd like all characters to be replaced with chars, digits to be replaced with digits. I'm wondering the best ...
2
votes
3answers
588 views

Chars scrambling (C# and Javascript)

I need to scramble chars in word. And this scrambling must not be random. In other words, each time of scrambling (on the same word) the new result must be equal to last scramble result (on the same ...
0
votes
2answers
617 views

Form a word from a scrambled letters in java

i'm doing a game project,in which we have to form words dynamically with the given set of letters... the given set of letters may contain duplicate also.. while forming words we can use a letter from ...
17
votes
4answers
1k views

garble function contest

Remember that away message on aim that said how: Aoccdrnig to a rscheearch at Cmabrigde Uinervtisy, it deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the ...
8
votes
3answers
372 views

How can I use TDD to solve a puzzle with an unknown answer?

Recently I wrote a Ruby program to determine solutions to a "Scramble Squares" tile puzzle: I used TDD to implement most of it, leading to tests that looked like this: it "has top, bottom, left, ...
0
votes
2answers
260 views

scramble function won't output

this function will not give me an output when tested in python's IDLE: import random def scramble(string): rlist = [] while len(rlist) < len(string): n = random.randint(0, len(string) ...
0
votes
1answer
338 views

Blackberry scrambled device ID in 8 characters unique

I need to scramble Device IDs on the Blackberry for privacy matter. When I call the function DeviceInfo.getDeviceId() I got a 9 characters number. After convert it in Hexa, I got the real PIN number ...
0
votes
3answers
108 views

Visual Studio weirdness

I have no one else to count unless this fantastic community, I know this is a non-programmer question but I can't figure it out why this is happening. To a client I developed, using 960.GS a layout ...
1
vote
5answers
3k views

Scramble a column in SQL Server?

We have a web app we'd like to demo to prospects, but our best way of doing so is with existing data, for a full experience. Certainly, we don't want to do this with actual customer names or ...
4
votes
10answers
784 views

Code Golf - Word Scrambler

Please answer with the shortest possible source code for a program that converts an arbitrary plaintext to its corresponding ciphertext, following the sample input and output I have given below. ...
1
vote
6answers
738 views

The best approach to scramble CSS definitions to a human-unreadable state throughout an ASP.NET application

I'm not sure if it will bring anything beyond saving on traffic through the removal of long-worded names, but I would definitely want to hide my system of namings, declarations and their organization. ...
9
votes
7answers
3k views

Obfuscate / Mask / Scramble personal information

I'm looking for a homegrown way to scramble production data for use in development and test. I've built a couple of scripts that make random social security numbers, shift birth dates, scramble ...