CipherUtil.cs
上传用户:szltgg
上传日期:2019-05-16
资源大小:604k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

C#

  1. /*
  2.  Copyright (c) 2005 Poderosa Project, All Rights Reserved.
  3.  This file is a part of the Granados SSH Client Library that is subject to
  4.  the license included in the distributed package.
  5.  You may not use this file except in compliance with the license.
  6.  $Id: CipherUtil.cs,v 1.2 2005/04/20 08:58:56 okajima Exp $
  7. */
  8. namespace Granados.Crypto
  9. {
  10. public class CipherUtil
  11. {
  12. internal static uint GetIntLE(byte[] src, int offset) {
  13. return ((uint)src[offset   ]        |
  14. ((uint)(src[offset + 1]) << 8)  |
  15. ((uint)(src[offset + 2]) << 16) |
  16. ((uint)(src[offset + 3]) << 24));
  17. }
  18. internal static void PutIntLE(uint val, byte[] dest, int offset) {
  19. dest[offset ]    = (byte)( val        & 0xff);
  20. dest[offset + 1] = (byte)((val >> 8 ) & 0xff);
  21. dest[offset + 2] = (byte)((val >> 16) & 0xff);
  22. dest[offset + 3] = (byte)((val >> 24) & 0xff);
  23. }
  24. internal static uint GetIntBE(byte[] src, int offset) {
  25. return (((uint)(src[offset    ]) << 24) |
  26. ((uint)(src[offset + 1]) << 16) |
  27. ((uint)(src[offset + 2]) << 8)  |
  28. ((uint)src[offset + 3]));
  29. }
  30. internal static void PutIntBE(uint val, byte[] dest, int offset) {
  31. dest[offset    ] = (byte)((val >> 24) & 0xff);
  32. dest[offset + 1] = (byte)((val >> 16) & 0xff);
  33. dest[offset + 2] = (byte)((val >> 8 ) & 0xff);
  34. dest[offset + 3] = (byte)( val        & 0xff);
  35. }
  36. internal static void BlockXor(byte[] src, int s_offset, int len, byte[] dest, int d_offset) {
  37. for(; len > 0; len--)
  38. dest[d_offset++] ^= src[s_offset++];
  39. }
  40. public static int memcmp(byte[] d1, int o1, byte[] d2, int o2, int len) {
  41. for(int i=0; i<len; i++) {
  42. byte b1 = d1[o1+i];
  43. byte b2 = d2[o2+i];
  44. if(b1<b2) return -1;
  45. else if(b1>b2) return 1;
  46. }
  47. return 0;
  48. }
  49. }
  50. }