ecpointencoder.java

来自「kmlnjlkj nlkjlkjkljl okopokipoipo oipipi」· Java 代码 · 共 21 行

JAVA
21
字号
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 without point compression, * to turn this on call setPointFormat() with "COMPRESSED". */public interface ECPointEncoder{    /**     * Set the formatting for encoding of points. If the String "UNCOMPRESSED" is passed     * in point compression will not be used. If the String "COMPRESSED" is passed point     * compression will be used. The default is "UNCOMPRESSED".     *      * @param style the style to use.     */    public void setPointFormat(String style);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?