SYMBOL INDEX (163 symbols across 29 files) FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/constant/CryptoConstant.java class CryptoConstant (line 19) | public class CryptoConstant { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/ec/CompactSign.java class CompactSign (line 39) | public class CompactSign { method getSignBytes (line 51) | public byte[] getSignBytes(byte[] compressedPubKey, byte[] hashedsourc... method parseASN1Sequence (line 76) | private ASN1Sequence parseASN1Sequence(byte[] signData) throws CryptoE... method extractRS (line 96) | private BigInteger[] extractRS(ASN1Sequence asn1Sequence) throws Crypt... method adjustS (line 113) | private BigInteger adjustS(BigInteger s, String curveName) { method padTo32Bytes (line 128) | private byte[] padTo32Bytes(BigInteger value) { method getRecoveryId (line 152) | private byte getRecoveryId(byte[] sigR, byte[] sigS, byte[] hassedMess... method decodePoint (line 185) | private static ECPoint decodePoint(ECNamedCurveParameterSpec spec, Big... method recoverPublicKey (line 201) | private ECPoint recoverPublicKey(ECNamedCurveParameterSpec spec, ECPoi... method buildSignature (line 218) | private byte[] buildSignature(byte recoveryId, byte[] r, byte[] s) { method verifySign (line 236) | public void verifySign(byte[] pubkey_rw, byte[] hashedSource, byte[] s... method getRecoveryComPublicKey (line 266) | private static byte[] getRecoveryComPublicKey(byte[] sigR, byte[] sigS... FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/encoding/Base58.java class Base58 (line 21) | public class Base58 { method encode (line 41) | public static String encode(byte[] input) { method decode (line 80) | public static byte[] decode(String input) { method divmod (line 127) | private static byte divmod(byte[] number, int startAt, int base) { method copyOfRange (line 146) | private static byte[] copyOfRange(byte[] source, int from, int to) { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/engines/AesEngine.java class AesEngine (line 34) | public class AesEngine { method aesEncryptDecrypt (line 47) | public byte[] aesEncryptDecrypt(byte[] source, CipherInfo cipherInfo, ... method convertCipherType (line 82) | private String convertCipherType(CipherInfo cipherInfo) { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/engines/CipherInfo.java class CipherInfo (line 27) | public class CipherInfo { method CipherInfo (line 49) | public CipherInfo() { method CipherInfo (line 56) | public CipherInfo(EncryptionType type, EncryptionMode mode, SymmetricK... method CipherInfo (line 71) | public CipherInfo(SymmetricCipherType cipherType, SymmetricPaddingType... method getType (line 99) | public EncryptionType getType() { method setType (line 102) | public void setType(EncryptionType type) { method getMode (line 105) | public EncryptionMode getMode() { method setMode (line 108) | public void setMode(EncryptionMode mode) { method getSize (line 111) | public SymmetricKeySize getSize() { method setSize (line 114) | public void setSize(SymmetricKeySize size) { method getPadding (line 117) | public SymmetricPaddingType getPadding() { method setPadding (line 120) | public void setPadding(SymmetricPaddingType padding) { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/DidKeyType.java type DidKeyType (line 21) | public enum DidKeyType { method DidKeyType (line 29) | DidKeyType(String rawValue) { method getRawValue (line 33) | public String getRawValue() { method fromString (line 37) | public static DidKeyType fromString(String rawValue) { method all (line 46) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/DigestType.java type DigestType (line 21) | public enum DigestType { method DigestType (line 26) | DigestType(String rawValue) { method getRawValue (line 30) | public String getRawValue() { method fromString (line 35) | public static DigestType fromString(String text) { method all (line 44) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/EccCurveType.java type EccCurveType (line 21) | public enum EccCurveType { method EccCurveType (line 25) | EccCurveType(String curveName) { method getCurveName (line 31) | public String getCurveName() { method fromString (line 35) | public static EccCurveType fromString(String text) { method all (line 44) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/EncryptionMode.java type EncryptionMode (line 21) | public enum EncryptionMode { method getRawValue (line 26) | public String getRawValue() { method setRawValue (line 30) | public void setRawValue(String mode) { method EncryptionMode (line 34) | EncryptionMode(String mode) { method fromString (line 38) | public static EncryptionMode fromString(String text) { method all (line 47) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/EncryptionType.java type EncryptionType (line 21) | public enum EncryptionType { method EncryptionType (line 26) | EncryptionType(String encType) { method getRawValue (line 30) | public String getRawValue() { method setRawValue (line 34) | public void setRawValue(String encType) { method fromString (line 38) | public static EncryptionType fromString(String text) { method all (line 47) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/MultiBaseType.java type MultiBaseType (line 21) | public enum MultiBaseType { method MultiBaseType (line 30) | MultiBaseType(String character) { method getCharacter (line 34) | public String getCharacter() { method getByCharacter (line 38) | public static MultiBaseType getByCharacter(String inputCharacter) { method all (line 49) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/SymmetricCipherType.java type SymmetricCipherType (line 21) | public enum SymmetricCipherType { method SymmetricCipherType (line 29) | SymmetricCipherType(String rawValue) { method getRawValue (line 34) | public String getRawValue() { method fromString (line 38) | public static SymmetricCipherType fromString(String text) { method all (line 47) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/SymmetricKeySize.java type SymmetricKeySize (line 21) | public enum SymmetricKeySize { method SymmetricKeySize (line 27) | SymmetricKeySize(int size) { method getRawValue (line 31) | public int getRawValue() { method setRawValue (line 35) | public void setRawValue(int size) { method fromString (line 39) | public static SymmetricKeySize fromString(int value) { method all (line 48) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/enums/SymmetricPaddingType.java type SymmetricPaddingType (line 21) | public enum SymmetricPaddingType { method getRawValue (line 26) | public String getRawValue() { method setRawValue (line 30) | public void setRawValue(String padding) { method SymmetricPaddingType (line 34) | SymmetricPaddingType(String padding) { method fromString (line 38) | public static SymmetricPaddingType fromString(String rawValue) { method all (line 46) | public static EnumSet all() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/exception/CryptoErrorCode.java type CryptoErrorCode (line 18) | public enum CryptoErrorCode implements CryptoErrorCodeInterface{ method CryptoErrorCode (line 56) | private CryptoErrorCode(String code, String msg) { method CryptoErrorCode (line 60) | private CryptoErrorCode(CryptoErrorCode errCodeKeymanagerKeyBase, Stri... method getCode (line 65) | @Override method getMsg (line 70) | @Override method getEnumByCode (line 75) | public static CryptoErrorCodeInterface getEnumByCode(String code) { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/exception/CryptoErrorCodeInterface.java type CryptoErrorCodeInterface (line 18) | public interface CryptoErrorCodeInterface { method getMsg (line 20) | public String getMsg(); method getCode (line 21) | public String getCode(); FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/exception/CryptoException.java class CryptoException (line 19) | public class CryptoException extends Exception{ method CryptoException (line 41) | public CryptoException(CryptoErrorCodeInterface ErrorEnum) { method CryptoException (line 47) | public CryptoException(CryptoErrorCodeInterface ErrorEnum, String erro... method CryptoException (line 54) | public CryptoException(String errorCode, String errorMsg) { method CryptoException (line 60) | public CryptoException(String iwErrorCode, Throwable throwable) { method CryptoException (line 65) | public CryptoException(String errorCode, String errorMsg, String error... method CryptoException (line 72) | public CryptoException(CryptoErrorCode errorCode, Throwable throwable) { method getErrorCode (line 78) | public String getErrorCode() { method getErrorReason (line 82) | public String getErrorReason() { method getErrorMsg (line 86) | public String getErrorMsg() { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/generator/EcKeyPairGenerator.java class EcKeyPairGenerator (line 32) | public class EcKeyPairGenerator { method generateKeyPair (line 41) | public KeyPairInterface generateKeyPair(EccCurveType eccCurveType) thr... FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/generator/GenerateSecureRandom.java class GenerateSecureRandom (line 26) | public class GenerateSecureRandom { method generateNonce (line 31) | public byte[] generateNonce() throws CryptoException { method generateSalt (line 35) | public byte[] generateSalt() throws CryptoException { method generateSecureRandom (line 39) | public byte[] generateSecureRandom(int size) throws CryptoException { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/generator/RsaKeyPairGenerator.java class RsaKeyPairGenerator (line 27) | public class RsaKeyPairGenerator { method generateKeyPair (line 29) | public KeyPairInterface generateKeyPair() throws CryptoException { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/keypair/EcKeyPair.java class EcKeyPair (line 29) | public class EcKeyPair implements KeyPairInterface{ method EcKeyPair (line 46) | public EcKeyPair(PublicKey publicKey, PrivateKey privateKey) { method getPublicKey (line 51) | @Override method setPublicKey (line 56) | @Override method getPrivateKey (line 61) | @Override method setPrivateKey (line 66) | @Override method setECType (line 71) | public void setECType(EccCurveType eccCurveType) { method getECType (line 75) | public EccCurveType getECType() { method getBase58PubKey (line 79) | public String getBase58PubKey() throws CryptoException { method getBase58CompreessPubKey (line 83) | public String getBase58CompreessPubKey() throws CryptoException { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/keypair/KeyPairInterface.java type KeyPairInterface (line 22) | public interface KeyPairInterface { method getPublicKey (line 29) | public PublicKey getPublicKey(); method setPublicKey (line 36) | public void setPublicKey(PublicKey publicKey); method getPrivateKey (line 43) | public PrivateKey getPrivateKey(); method setPrivateKey (line 50) | public void setPrivateKey(PrivateKey privateKey); FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/keypair/RsaKeyPair.java class RsaKeyPair (line 31) | public class RsaKeyPair implements KeyPairInterface{ method RsaKeyPair (line 36) | public RsaKeyPair() { method getPublicKey (line 40) | @Override method setPublicKey (line 45) | @Override method getPrivateKey (line 50) | @Override method setPrivateKey (line 55) | @Override method getPublicKey (line 60) | public PublicKey getPublicKey(byte[] publicKey) throws CryptoException { method getPrivateKey (line 74) | public PrivateKey getPrivateKey(byte[] decPrivKey) throws CryptoExcept... FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/signature/EccSignatureProvider.java class EccSignatureProvider (line 35) | public class EccSignatureProvider implements SignatureProvider { method generateSignatureFromHashedData (line 48) | public byte[] generateSignatureFromHashedData(PrivateKey privateKey, b... method convertToCompactSignature (line 81) | public byte[] convertToCompactSignature(PublicKey publicKey, byte[] so... method verifyCompactSignWithCompressedKey (line 99) | public void verifyCompactSignWithCompressedKey(byte[] compressedpublic... method getECTypeFromDidKeyType (line 112) | public static EccCurveType getECTypeFromDidKeyType(DidKeyType didKeyTy... method getSignatureAlgorithm (line 130) | public static String getSignatureAlgorithm(DidKeyType didKeyType) thro... FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/signature/SignatureProvider.java type SignatureProvider (line 22) | public interface SignatureProvider { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/util/CryptoUtils.java class CryptoUtils (line 59) | public class CryptoUtils { method generateKeyPair (line 77) | public static KeyPairInterface generateKeyPair(DidKeyType didKeyType) ... method compressPublicKey (line 100) | public static byte[] compressPublicKey(byte[] unCompressedPublicKeyByt... method unCompressPublicKey (line 132) | public static byte[] unCompressPublicKey(byte[] compressedPublicKey, E... method generateNonce (line 158) | public static byte[] generateNonce(int length) throws CryptoException { method generateSalt (line 169) | public static byte[] generateSalt() throws CryptoException { method generateSharedSecret (line 182) | public static byte[] generateSharedSecret(byte[] compressedPublicKeyBy... method pbkdf2 (line 232) | public static byte[] pbkdf2(char[] password, byte[] salt, int iterator... method encrypt (line 258) | public static byte[] encrypt(byte[] source, CipherInfo cipherInfo, byt... method decrypt (line 272) | public static byte[] decrypt(byte[] cipherText, CipherInfo cipherInfo,... FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/util/DigestUtils.java class DigestUtils (line 27) | public class DigestUtils { method getDigest (line 37) | public static byte[] getDigest(byte[] source, DigestType digestType) t... method getShaDigest (line 61) | private static byte[] getShaDigest(byte[] source, String algorithm) th... method mergeNonce (line 78) | public static byte[] mergeNonce(byte[] clientNonce, byte[] serverNonce... FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/util/MultiBaseUtils.java class MultiBaseUtils (line 26) | public class MultiBaseUtils { method encode (line 36) | public static String encode(byte[] source, MultiBaseType baseType) thr... method decode (line 84) | public static byte[] decode(String multibase) throws CryptoException { method getMultibaseEnum (line 117) | private static MultiBaseType getMultibaseEnum(String firstString) { method padBase64String (line 132) | private static String padBase64String(String base64) { FILE: source/did-crypto-sdk-server/src/main/java/org/omnione/did/crypto/util/SignatureUtils.java class SignatureUtils (line 30) | public class SignatureUtils { method generateCompactSignature (line 47) | public static byte[] generateCompactSignature(EcKeyPair keyPair, byte[... method generateEccSignatureFromHashedData (line 75) | public static byte[] generateEccSignatureFromHashedData(PrivateKey pri... method convertToCompactSignature (line 97) | public static byte[] convertToCompactSignature(PublicKey publicKey, by... method verifyCompactSignWithCompressedKey (line 125) | public static void verifyCompactSignWithCompressedKey(byte[] compresse...