Skip to content

Commit

Permalink
removed lint messages from fbs
Browse files Browse the repository at this point in the history
  • Loading branch information
jerson committed Mar 3, 2022
1 parent d7ca400 commit b93f6cb
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions flatbuffers/bridge.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ enum Hash : int {

table ConvertJWTRequest {
data:string;
keyId:string;
key_id:string;
}

table ConvertKeyPairRequest {
privateKey:string;
private_key:string;
certificate:string;
password:string;
}
Expand All @@ -41,74 +41,74 @@ table ConvertPKCS12Request {
}

table ConvertPrivateKeyRequest {
privateKey:string;
private_key:string;
}

table ConvertPublicKeyRequest {
publicKey:string;
public_key:string;
}

table DecryptOAEPRequest {
ciphertext:string;
label:string;
hash:model.Hash;
privateKey:string;
private_key:string;
}

table DecryptOAEPBytesRequest {
ciphertext:[ubyte];
label:string;
hash:model.Hash;
privateKey:string;
private_key:string;
}

table DecryptPKCS1v15Request {
ciphertext:string;
privateKey:string;
private_key:string;
}

table DecryptPKCS1v15BytesRequest {
ciphertext:[ubyte];
privateKey:string;
private_key:string;
}

table DecryptPrivateKeyRequest {
privateKeyEncrypted:string;
private_key_encrypted:string;
password:string;
}

table EncryptOAEPRequest {
message:string;
label:string;
hash:model.Hash;
publicKey:string;
public_key:string;
}

table EncryptOAEPBytesRequest {
message:[ubyte];
label:string;
hash:model.Hash;
publicKey:string;
public_key:string;
}

table EncryptPKCS1v15Request {
message:string;
publicKey:string;
public_key:string;
}

table EncryptPKCS1v15BytesRequest {
message:[ubyte];
publicKey:string;
public_key:string;
}

table EncryptPrivateKeyRequest {
privateKey:string;
private_key:string;
password:string;
cipher:model.PEMCipher;
}

table GenerateRequest {
nBits:int;
n_bits:int;
}

table HashRequest {
Expand All @@ -121,67 +121,67 @@ table Base64Request {
}

table MetadataPrivateKeyRequest {
privateKey:string;
private_key:string;
}

table MetadataPublicKeyRequest {
publicKey:string;
public_key:string;
}

table SignPKCS1v15Request {
message:string;
hash:model.Hash;
privateKey:string;
private_key:string;
}

table SignPKCS1v15BytesRequest {
message:[ubyte];
hash:model.Hash;
privateKey:string;
private_key:string;
}

table SignPSSRequest {
message:string;
hash:model.Hash;
saltLength:model.SaltLength;
privateKey:string;
salt_length:model.SaltLength;
private_key:string;
}

table SignPSSBytesRequest {
message:[ubyte];
hash:model.Hash;
saltLength:model.SaltLength;
privateKey:string;
salt_length:model.SaltLength;
private_key:string;
}

table VerifyPKCS1v15Request {
signature:string;
message:string;
hash:model.Hash;
publicKey:string;
public_key:string;
}

table VerifyPKCS1v15BytesRequest {
signature:[ubyte];
message:[ubyte];
hash:model.Hash;
publicKey:string;
public_key:string;
}

table VerifyPSSRequest {
signature:string;
message:string;
hash:model.Hash;
saltLength:model.SaltLength;
publicKey:string;
salt_length:model.SaltLength;
public_key:string;
}

table VerifyPSSBytesRequest {
signature:[ubyte];
message:[ubyte];
hash:model.Hash;
saltLength:model.SaltLength;
publicKey:string;
salt_length:model.SaltLength;
public_key:string;
}

table StringResponse {
Expand All @@ -205,8 +205,8 @@ table PKCS12KeyPairResponse {
}

table PKCS12KeyPair {
privateKey:string;
publicKey:string;
private_key:string;
public_key:string;
certificate:string;
}

Expand All @@ -216,8 +216,8 @@ table KeyPairResponse {
}

table KeyPair {
privateKey:string;
publicKey:string;
private_key:string;
public_key:string;
}

table PrivateKeyInfoResponse {
Expand All @@ -226,7 +226,7 @@ table PrivateKeyInfoResponse {
}

table PrivateKeyInfo {
bitLen:long;
bit_len:long;
size:long;
error:string;
}
Expand All @@ -237,7 +237,7 @@ table PublicKeyInfoResponse {
}

table PublicKeyInfo {
bitLen:long;
bit_len:long;
size:long;
e:long;
}
Expand Down

0 comments on commit b93f6cb

Please sign in to comment.