Code Monkey home page Code Monkey logo

dsfc's People

Contributors

danieleteti avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

dsfc's Issues

Unable to use ciphers

Hello there, I think something is wrong in your library with the cipher 
filters

In the server side is impossible to set a crypt_key.

And also I don't see anywhere how to set the crypt_key in the client side.

Regards

Original issue reported on code.google.com by [email protected] on 15 Jan 2010 at 6:01

Error reading TTransportFilterItem.FilterId: Illegal argument

What steps will reproduce the problem?
1. add the filter in he server to DSHTPservice.Filters in the IDE 
2. Run the server 
3. Error appears imediatly
Error reading TTransportFilterItem.FilterId: Illegal argument

What is the expected output? What do you see instead?
I expected the server to run not to give an error message

What version of the product are you using? On what operating system?
Delphi XE windows 7 32bits

Please provide any additional information below.
If need I can provide you with an demo project.

Original issue reported on code.google.com by [email protected] on 12 Nov 2010 at 1:38

Integer overflow in TCipher_RC6.DoInit


What is the expected output? What do you see instead?
Integer overflow

What version of the product are you using? On what operating system?
Delphi 2010 win 2003 32bit

Please provide any additional information below.

procedure TCipher_RC6.DoInit(const Key; Size: Integer);
var
  K: array[0..63] of LongWord;
  D: PLongArray;
  I,J,L,A,B,Z,T: LongWord;
begin
  if FRounds = 0 then FRounds := 20 else
    if FRounds < 16 then FRounds := 16 else
      if FRounds > 24 then FRounds := 24;
  D := FUser;
  FillChar(K, SizeOf(K), 0);
  Move(Key, K, Size);
  L := Size shr 2;
  if Size and 3 <> 0 then Inc(L);
  if L <= 0 then L := 1;
  J := $B7E15163;
  for I := 0 to (FRounds + 2) * 2 do
  begin
    D[I] := J;
    Inc(J, $9E3779B9);
  end;

$B7E15163 + $9E3779B9 > LongWord 


Original issue reported on code.google.com by [email protected] on 5 Apr 2011 at 4:05

Key property is not persistent.

Hello,

The key property doesn't is saved when you close a server project and reopen 
it. Is easy to test.

Regards and thank you very much.

Original issue reported on code.google.com by [email protected] on 21 Jan 2010 at 9:51

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.