It defines an HTTP-header which whitelists trusted sources for Javascript files while disallowing execution of inline Javascript in the HTML document. Content Security Policy is currently in draft status at the W3C. The final HTTP header will be Content-Security-Policy. An example header (Taken ...
3
votes
4answers
339 views
Two Dimensional Array Constraints: Sudoku
I am attempting to solve Sudoku as a constraint satisfaction problem for a homework assignment. I have already constructed constraints for all the elements in a particular row being distinct, as well ...
3
votes
7answers
378 views
Is Communicating Sequential Processes ever used in large multi threaded C++ programs?
I'm currently writing a large multi threaded C++ program (> 50K LOC).
As such I've been motivated to read up alot on various techniques for handling multi-threaded code. One theory I've found to be ...
2
votes
0answers
284 views
Convert First-Order Logic to CNF
I'm endeavouring to use MiniSat to solve a constraint satisfaction problem. In first-order logic the problem is easily represented by a few discrete-domain variables and some predicates.
However, ...
2
votes
2answers
339 views
Java used heap vs. allocated object size
I have one probably dumb question. I am currently testing CSP solvers choco and jacop. When I run profiling of the app (graph colouring, about 3000 nodes), I dont fully understand the results.
The ...
2
votes
3answers
2k views
How to export non-exportable private key from store
I need to export private key from Windows store. What should I do if key marked as non-exportable? I know that it is possible, program jailbreak can export this keys.
To export key I use ...
2
votes
1answer
481 views
Duplicate Symbol Linker Error (C++ help)
I'm learning some CSP (constraint satisfaction) theory stuff right now, and am using this library to parse XML files. I'm using Xcode as an IDE.
My program compiles fine, but when it goes to link the ...
1
vote
2answers
47 views
Javascript and CSP - best practices
I want to use Content Site Protection for my web application. If you haven't heard of it, in short: it will allow me to disable any embedded javascript into my web app, helping preventing XSS.
The ...
1
vote
1answer
55 views
Complete Graph k-Coloring Solver
I am looking for a complete CSP solver, meaning it will always find a solution if it exists and will tell you if no solution exists. A solver that is optimized for graph coloring is preferred, but not ...
1
vote
1answer
100 views
CSP Channels with native threading in Python
I'm looking for an implementation of CSP channels on top of native threads in Python. I've seen a few libraries about but they include everything but the kitchen sink.
Specifically, I'm looking for ...
1
vote
1answer
488 views
Chrome 18: How to allow inline scripting with a Content Security Policy?
Chrome 18 Dev/Canary has just been released, and content_security_policy will be needed in the manifest for certain extensions.
I'm trying to get a CSP working for inline scripting, but I don't know ...
1
vote
0answers
56 views
Asking help for using Minion csp solver as backend engine
I found the MINION csp solver appealing and wish to use it as a back end of a scheduling software (Delphi/windows). Are there seasoned coders with relevant usecase to share experience ?
1
vote
1answer
47 views
Is there any way to register my own csp in iOS
I would like to create my own CSP (cryptographic service provider) with non standart cryptographic algorithms (like GOST etc)
Is there any way for me to register it in ios, so the other applications ...
1
vote
1answer
154 views
How do I run POCO C++ server pages?
I'm a beginner in C++ server pages. I have tried C++ Server Pages by micronovae, but couldnt connect ODBC it used to give link error "undefined reference to SQLAllocHandle@12", I could not resolve it. ...
1
vote
1answer
59 views
CHOCO Constraint Solver features question
Does anyone know whether CHOCO supports the following:
Dynamic Variable Ordering
and
Precedence Constraints ?
1
vote
2answers
170 views
How to remove Left recursive in this ANTLR grammer?
I am trying to parse CSP(Communicating Sequential Processes) CSP Reference Manual. I have defined following grammer rules.
assignment
: IDENT '=' processExpression
;
processExpression
: ...
1
vote
1answer
161 views
How to create non-numeric constraints in Mozart/Oz?
I want to implement a CSP with the variables' domain being non-numeric (something like [lisa ann mary joanna] ). Is there a way to achieve this in Mozart/Oz?
1
vote
4answers
144 views
Constraint Satisfaction Problem: Choosing real numbers with certain characteristics
I have a set of n real numbers. I also have a set of functions,
f_1, f_2, ..., f_m.
Each of these functions takes a list of numbers as its argument. I also have a set of m ranges,
[l_1, u_1], ...
1
vote
0answers
263 views
MS CSP: Difference between AT_SIGNATURE and RSA_KEY_SIGN (and also AT_KEYEXCHANGE and CALG_RSA_KEYX)
I'm writing CSP library (for CryptoAPI) for smartcards my company sells.
I have question about difference between AT_SIGNATURE key type and CALG_RSA_SIGN algorithm for private key (the same also for ...
1
vote
2answers
168 views
Fastest way to produce UDP packets
We're building a test harness to push binary messages out on a UDP multicast.
The prototype is using the Twisted reactor loop to push out messages, which is achieving just about the level of traffic ...
0
votes
1answer
23 views
SmatrCard logon on Windows Server 2008 R2 Enterprise
I created a test domain, a CA and I issued a certificate with that CA. I also have fully functional CSP. For logging on, Windows are offering smart card as logon option. However, when I insert the ...
0
votes
1answer
40 views
The SYSTEM account cannot access the certificate store
Why the SYSTEM account is not able to access the user's certificate store?
At the same time the SYSTEM account is able to read the certificate (through the CSP dll) from the smart card and put it in ...
0
votes
1answer
52 views
Dynamic CSP with Cplex
Do you know if there's a way to change some constraints in an already solved Cplex constraint optimization problem, and solve it again but with the result being as close as possible to the previous ...
0
votes
1answer
49 views
Content Security Policy problems in calling functions and display images
Do not understand the the effect of the policy I specify at my site http://pcrypt.org/dev/groups.php.
header("X-Content-Security-Policy: allow 'self'; img-src *; script-src 'self'; frame-src 'self'; ...
0
votes
0answers
14 views
Meeting scheduling variation
Please point me in the right direction. I am new to CSP and I am wondering how to model following variation of the MSP problem (university example):
Given L lectures, every lecture Li has some ...
0
votes
1answer
41 views
How to check certificate and key pair created by CSP or PKCS?
I have a problem with keypair and certificate generate in token using csp or pkcs, and i must to distict this then i want to know
"How to check certificate and key pair created by CSP or PKCS ??".
0
votes
0answers
40 views
CSP using FDR - Modeling an attack on a symmetric key?
I'm trying to use the FDR tool to model a protocol using CSP, but I am having difficulties understanding its internals, even though I already read a lot of stuff about it.
Does anyone know of an ...
0
votes
1answer
70 views
.NET: puzzling cryptographic exception in RsaCryptoServiceProvider
I get a cryptographic exception in the following code, and the exception states: invalid flags specified
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider((int)strength);
rsa.Encrypt(new ...
0
votes
1answer
127 views
Print large SVG chart on separate pages
I am trying to print a large SVG chart from a browser, the SVG chart is embedded into the HTML. The width / height of the chart is set to absolute. The print only prints a part of the SVG chart, ...
0
votes
0answers
148 views
Content Security Protection in JSF AJAX components
In my web application I use composite components including inline javascript, e.g. an input field preceeded by a jquery call to transfer it into a datepicker.
The application's content is rendered by ...
0
votes
3answers
470 views
Object already exists in RSACryptoServiceProvider
I copied the source code from one application to another, both running on the same machine. I am also using the same string for containerName below in both applications.
What is preventing my new ...