ecpointencoder.java
来自「bouncycastle 是一个JAVA安全提供者」· Java 代码 · 共 20 行
JAVA
20 行
package org.bouncycastle.jce.interfaces;/** * All BC elliptic curve keys implement this interface. You need to * cast the key to get access to it. * <p> * By default BC keys produce encodings with point compression, * to turn this off call setPointFormat() with "UNCOMPRESSED". */public interface ECPointEncoder{ /** * Set the formatting for encoding of points. If the String "UNCOMPRESSED" is passed * in point compression will not be used. The default is "COMPRESSED". * * @param style the style to use. */ public void setPointFormat(String style);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?