?? java_crypt_md5_class.c
字號:
/* * Copyright (C) 1995, 1996 Systemics Ltd (http://www.systemics.com/) * All rights reserved. * * This library and applications are FREE FOR COMMERCIAL AND NON-COMMERCIAL USE * as long as the conditions within the COPYRIGHT file are adhered to. * */#include "local.h"#include "md5.h"#include "java_crypt_MD5.h"void java_crypt_MD5_init( struct Hjava_crypt_MD5 * this ){ MD5Init( (MD5_CTX *)unhand( unhand( this )->contextBuf )->body );}void java_crypt_MD5_update( struct Hjava_crypt_MD5 * this, HArrayOfByte * buffer, long offset, long length ){ MD5Update( (MD5_CTX *)unhand( unhand( this )->contextBuf )->body, ( unhand( buffer )->body ) + offset, length );}void java_crypt_MD5_finish( struct Hjava_crypt_MD5 * this, HArrayOfByte * outputBuffer ){ MD5Final( unhand( outputBuffer )->body, (MD5_CTX *)unhand( unhand( this )->contextBuf )->body );}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -