libsparkcrypto is a formally verified implementation of several widely used symmetric cryptographic algorithms using the SPARK programming language and toolset. For the complete library proofs of the absence of run-time errors like type range violations, division by zero and numerical overflows are available. Some of its subprograms include proofs of partial correctness. The distribution contains test cases for all implemented algorithms and a benchmark to compare its performance with the OpenSSL library. The achieved speed has been found to be very close to the optimized C and Assembler implementations of OpenSSL. WWW: http://senier.net/libsparkcrypto/ PR: ports/180015 Submitted by: John Marino <draco@marino.st>
13 lines
516 B
Text
13 lines
516 B
Text
--- build/libsparkcrypto.gpr.orig 2013-06-26 21:14:37.000000000 +0000
|
|
+++ build/libsparkcrypto.gpr
|
|
@@ -1,7 +1,8 @@
|
|
project Libsparkcrypto
|
|
is
|
|
- for Source_Dirs use ("adainclude", "sharedinclude");
|
|
- for Library_Dir use "adalib";
|
|
+ for Source_Dirs use ("../../include/libsparkcryto/adainclude",
|
|
+ "../../include/libsparkcrypto/sharedinclude");
|
|
+ for Library_Dir use "../libsparkcrypto";
|
|
for Library_Kind use "static";
|
|
for Library_Name use "sparkcrypto";
|
|
for Externally_Built use "true";
|