| Class | Description |
|---|---|
| EncryptionBootstrapConfigurationAfter | |
| EncryptionBootstrapConfigurationAfter.RsaEncryptionConfigurationCustom | |
| EncryptionBootstrapConfigurationAfter.VanillaEncryptionConfigurationCustom | |
| KeySpecProperties |
public enum AES {
V1(128), V2(256);
private int value;
private AES(int value) {
this.value = value;
}
public int getValue() {
return this.value;
}
}
|
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.