代码搜索结果
找到约 10,000 项符合
5 的代码
pgpmd5.c
/*
* This code implements the MD5 message-digest algorithm.
* The algorithm is due to Ron Rivest. This code was
* written by Colin Plumb in 1993, no copyright is claimed.
* This code is in th
pgpmd5.c
/*
* This code implements the MD5 message-digest algorithm.
* The algorithm is due to Ron Rivest. This code was
* written by Colin Plumb in 1993, no copyright is claimed.
* This code is in th
hmacmd5.h
#ifndef _HMACMD5_H
#define _HMACMD5_H
#include "md5.h"
typedef struct {
unsigned char ipad[64];
unsigned char opad[64];
MD5_CTX md5ctx;
} HMACMD5_CTX;
void HMACMD5Init(HMACMD5_CTX *ctx,
main.cpp
/****************************************************************************
**
** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.
**
** This file is part of the plugins of the Qt Toolkit
md5.h
#ifndef MD5_H
#define MD5_H
#ifdef __alpha
typedef unsigned int uint32;
#else
typedef unsigned long uint32;
#endif
struct MD5Context {
uint32 buf[4];
uint32 bits[2];
unsigned
md5.c
#include "md5.h"
#include
/* MD5_CTX context;
MD5Init (&context);
MD5Update (&context, "crazyd", strlen("crazyd"));
MD5Final (&context);
//在上面的断点看context处的内存,连续16个字节的内容就是加密后的结
md5.c
#include "md5.h"
#include
void main()
{
MD5_CTX context;
MD5Init (&context);
MD5Update (&context, "crazyd", strlen("crazyd"));
MD5Final (&context);
//在上面的断点看context处的内存,连续16个
examp5_5.m
num=[1000];
den=conv(conv([1,1],[1,2]),[1,5]);
g=tf(num,den);
nyquist(g)
ex5_5.m
num=[1,0];
den=[1];
g=tf(num,den);
[x0,y0,w]=bode(g);
[x,y]=bd_asymp(g,w);
subplot(211), semilogx(w,20*log10(x0(:)),x,y)
subplot(212), semilogx(w,y0(:))