登录
首页 » Java » BouncyCastleTest

BouncyCastleTest

于 2009-11-13 发布 文件大小:3KB
0 177
下载积分: 1 下载次数: 35

代码说明:

  BouncyCastlejar包安装测试(BouncyCastlejar package installation and testing)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • io ges 贸易 fivonacy 入门
    描述荷载子口布 ;另一种方法做车辆的检测是通过使用 ;背景减法 ;(BS)。 ;你可以尝试使用一个背景减法库bgslibrary像 ; ;(我在我的硕士课程开发)。查看和,车辆检测与背景减法和部分的更多细节。对于C++  例源代码;使用bgslibrary可以看到begginers  ;CPP  ;文件演示。
    2022-07-02 09:06:11下载
    积分:1
  • UDP
    本实验为编程实现 UDP 协议下使用 RSA 算法对信息的加密解密,用于两端之间的通讯 功能,开发平台为 win8.1, 开发环境 Eclipse, 开发语言 Java。(This experiment under the UDP protocol for programming using the RSA algorithm for encryption and decryption of information, for communication between the two ends of Function development platform is win8.1, the Eclipse development environment, programming language Java.)
    2016-07-07 09:59:47下载
    积分:1
  • 本教程是为java插件ImageJ写作介绍。它解释了…
    This tutorial is an introduction to writing Java plugins for ImageJ. It explains the concept of plugins in ImageJ, starting with the sample plugins that are part of the ImageJ distribution and covers those parts of the ImageJ API, that are essential for writing plugins. A reference of the most important classes, methods and constants is provided.
    2023-07-14 17:40:02下载
    积分:1
  • demo
    springboot启动文件,初始化项目(springboot start file)
    2020-06-17 11:40:02下载
    积分:1
  • Snake_game
    四格消砖连连看游戏,有积分模板,可暂停继续,简单实现联机功能(Fourfold eliminate tiles, Snake game, integral template, you can pause continue, simple online)
    2013-05-03 10:55:46下载
    积分:1
  • android open gl 示例代码下载
    [实例简介]Open GL 入门级示例 [实例截图] [核心代码]package com.china.gltry;import javax.microedition.khronos.egl.EGL10;import javax.microedition.khronos.egl.EGL11;import javax.microedition.khronos.egl.EGLConfig;import javax.microedition.khronos.egl.EGLContext;import javax.microedition.khronos.egl.EGLDisplay;import javax.microedition.khronos.egl.EGLSurface;import javax.microedition.khronos.opengles.GL;import android.view.SurfaceHolder;/** * An EGL helper class. */public class EGLHelper{ public EGLHelper() { } /** * Initialize EGL for a given configuration spec. * @param configSpec */ public void start(int[] configSpec){ /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); /* * We can now initialize EGL for that display */ int[] version = new int[2]; mEgl.eglInitialize(mEglDisplay, version); EGLConfig[] configs = new EGLConfig[1]; int[] num_config = new int[1]; mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, num_config); mEglConfig = configs[0]; /* * Create an OpenGL ES context. This must be done only once, an * OpenGL context is a somewhat heavy object. */ mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null); mEglSurface = null; } /* * Create and return an OpenGL surface */ public GL createSurface(SurfaceHolder holder) { /* * The window size has changed, so we need to create a new * surface. */ if (mEglSurface != null) { /* * Unbind and destroy the old EGL surface, if * there is one. */ mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); } /* * Create an EGL surface we can render into. */ mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, null); /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); GL gl = mEglContext.getGL(); return gl; } /** * Display the current render surface. * @return false if the context has been lost. */ public boolean swap() { mEgl.eglSwapBuffers(mEglDisplay, mEglSurface); /* * Always check for EGL_CONTEXT_LOST, which means the context * and all associated data were lost (For instance because * the device went to sleep). We need to sleep until we * get a new surface. */ return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; } public void finish() { if (mEglSurface != null) { mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); mEglSurface = null; } if (mEglContext != null) { mEgl.eglDestroyContext(mEglDisplay, mEglContext); mEglContext = null; } if (mEglDisplay != null) { mEgl.eglTerminate(mEglDisplay); mEglDisplay = null; } } EGL10 mEgl; EGLDisplay mEglDisplay; EGLSurface mEglSurface; EGLConfig mEglConfig; EGLContext mEglContext;}
    2015-04-06下载
    积分:1
  • sendPhoto
    用JavaME开发,在手机上传图片到服务器,高保真的生成一个png图片(With Java ME development, at cell phone picture upload to the server, high-fidelity to generate a png picture)
    2009-03-21 23:22:59下载
    积分:1
  • LunarPhases
    LunarPhases 简单的UI制作 可以通过选择 来查看月圆月缺图片
    2023-09-02 17:00:08下载
    积分:1
  • java,系统管理
    实现对员工管理的系统,也可以改为商品管理,停车场管理
    2022-10-06 07:45:02下载
    积分:1
  • 安卓小项目
    用户管理系统,对用户的增加,查找,修改,删除
    2022-05-14 10:33:50下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载