Skip to content

Commit 0d0ba13

Browse files
committed
simplified nested message names of Ikev2TransformTypesDetailed
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 2a8c082 commit 0d0ba13

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

schema/bom-1.7.proto

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2509,7 +2509,7 @@ message CryptoProperties {
25092509
// IKEv2 Transform Types Detailed
25102510
message Ikev2TransformTypesDetailed {
25112511
// Encryption Algorithm (ENCR)
2512-
message IkeV2Enc {
2512+
message Enc {
25132513
// A name for the encryption method
25142514
optional string name = 1;
25152515
// The key length of the encryption algorithm
@@ -2519,49 +2519,49 @@ message CryptoProperties {
25192519
}
25202520

25212521
// Pseudorandom Function (PRF)
2522-
message IkeV2Prf {
2522+
message Prf {
25232523
// A name for the pseudorandom function
25242524
optional string name = 1;
25252525
// The bom-ref to algorithm cryptographic asset
25262526
optional string algorithm = 2;
25272527
}
25282528

25292529
// Integrity Algorithm (INTEG)
2530-
message IkeV2Integ {
2530+
message Integ {
25312531
// A name for the integrity algorithm
25322532
optional string name = 1;
25332533
// The bom-ref to algorithm cryptographic asset
25342534
optional string algorithm = 2;
25352535
}
25362536

25372537
// Key Exchange Method (KE)
2538-
message IkeV2Ke {
2538+
message Ke {
25392539
// A group identifier for the key exchange algorithm
25402540
optional int32 group = 1;
25412541
// The bom-ref to algorithm cryptographic asset
25422542
optional string algorithm = 2;
25432543
}
25442544

25452545
// IKEv2 Authentication method
2546-
message IkeV2Auth {
2546+
message Auth {
25472547
// A name for the authentication method
25482548
optional string name = 1;
25492549
// The bom-ref to algorithm cryptographic asset
25502550
optional string algorithm = 2;
25512551
}
25522552

25532553
// Transform Type 1: encryption algorithms
2554-
repeated IkeV2Enc encr = 1;
2554+
repeated Enc encr = 1;
25552555
// Transform Type 2: pseudorandom functions
2556-
repeated IkeV2Prf prf = 2;
2556+
repeated Prf prf = 2;
25572557
// Transform Type 3: integrity algorithms
2558-
repeated IkeV2Integ integ = 3;
2558+
repeated Integ integ = 3;
25592559
// Transform Type 4: Key Exchange Method (KE) per RFC9370, formerly called Diffie-Hellman Group (D-H)
2560-
repeated IkeV2Ke ke = 4;
2560+
repeated Ke ke = 4;
25612561
// Specifies if an Extended Sequence Number (ESN) is used.
25622562
optional bool esn = 5;
25632563
// IKEv2 Authentication method
2564-
repeated IkeV2Auth auth = 6;
2564+
repeated Auth auth = 6;
25652565
}
25662566

25672567
// The concrete protocol type.

0 commit comments

Comments
 (0)