GNU Octave尺寸不匹配错误?

时间:2017-01-24 10:56:13

标签: matlab octave gnu

我在GNU Octave上犯了错误。

error: sim_encryption: A(I,J,...) = X: dimensions mismatch
error: called from
    sim_encryption at line 11 column 13
Line 11 is "    s( 1 , : )  =  mod( s + k , 2 ) ;" . 

当我搜索错误时,据说问题是关于矩阵,但矩阵看起来并不相同。那么问题是什么?

ph  =  '3243f6a8885a308d313198a2e0370734' ;
kh  =  '2b7e151628aed2a6abf7158809cf4f3c' ;

k  =  zeros( 11 , 128 ) ;
r  =  zeros( 11 , 8 ) ;
s  =  zeros( 11 , 128 ) ;

s( 1 , : )  =  hex_to_bin( ph ) ;
k( 1 , : )  =  hex_to_bin( kh ) ;
r( 1 , : )  =  [ 0 0 0 0  0 0 0 1 ] ;
s( 1 , : )  =  mod( s + k , 2 ) ;

for  i  =  1  :  10 ,
    i ;
    [ k( i+1 , : ) , r( i+1 , : ) ]  =  key_schedule( k( i , : ) , r( i , : ) ) ;
    s( i+1 , : )  =  mod( k( i+1 , : ) + aes_round( s( i , : ) , i ) , 2 ) ;
    kh  =  bin_to_hex( k(i+1,:) , 32 ) ;
    sh  =  bin_to_hex( s(i+1,:) , 32 ) ;
end

ch  =  bin_to_hex( s(11,:) , 32 )

1 个答案:

答案 0 :(得分:1)

由于sk的大小均为11 x 128,因此结果为  mod(s + k, 2)也是11 x 128,您试图覆盖{1}} 1 x 128