📄 ecpointencoder.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -